@charset "UTF-8";

/* COMPASS
 * ----------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

figure img {
  width: 100%;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

table {
  display: table;
  width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }

  @page :left {
    margin: 0;
  }

  @page :right {
    margin: 0;
  }

  @page :first {
    margin-top: 0;
  }
}

/* GENERAL
 * ----------------------------------------------- */
body {
  color: #382617;
  /*
  font-family: 'Noto Sans SC', sans-serif;
   */
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #382617;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}

.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-warning {
  color: #a14440;
}

.text-muted {
  color: #aaa;
}

.container {
  min-width: 1200px;
}

.wrapper-content {
  width: 1200px;
  margin: 0 auto;
}

.wrapper {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.sm,
.sm-inline {
  display: none !important;
}

@media (max-width: 750px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .sm-inline {
    display: inline-block !important;
  }

  .trans,
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  html {
    font-size: 13.33333vw;
  }

  body {
    font-size: 0.24rem;
  }

  img {
    width: 100%;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper-content {
    width: auto;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}

/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.header {
  padding-top: 70px;
}

.header .header-inner {
  height: 169px;
  background: url(../img/common/bg_page.png) no-repeat 50% 0;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.header .header-inner .wrapper-content {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.tablet .header .header-inner .wrapper-content {
  padding: 0 10px;
}

.header .header-logo {
  margin-top: 29px;
}

.header .header-banner {
  display: block;
  margin-top: 30px;
  width: 200px;
}

.header .ul-clinic {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.header .ul-clinic .item {
  display: table;
  margin-bottom: 5px;
}

.header .ul-clinic .item>* {
  display: table-cell;
}

.header .ul-clinic .th {
  font-weight: bold;
  font-size: 14px;
  width: 70px;
  line-height: 1.2;
  text-align: center;
}

.header .ul-clinic .th span {
  display: block;
  padding: 5px 2px 4px;
  width: 100%;
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.ie.windows10 .header .ul-clinic .th span {
  padding-top: 8px;
  padding-bottom: 2px;
}

.header .ul-clinic .td {
  padding-left: 14px;
  font-weight: bold;
  font-size: 18px;
}

.header .ul-clinic .time {
  position: relative;
  top: 4px;
}

.header .ul-clinic .phone {
  display: block;
  position: relative;
  top: -3px;
}

.navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  background: #fff;
  -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.navigation .ul-menu a {
  color: #000;
  font-weight: bold;
  line-height: 1.2;
}

.navigation .ul-menu .link-nav {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.navigation .nav-sub {
  z-index: 999;
  display: none;
}

.navigation .submenu li {
  border-bottom: 1px solid #000;
}

.navigation .submenu a {
  display: block;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
  position: relative;
  padding: 11px 18px 12px 38px;
  font-size: 14px;
}

.navigation .submenu a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.navigation .submenu a:before {
  position: absolute;
  content: "";
  top: 15px;
  left: 22px;
  background: #000;
  width: 8px;
  height: 8px;
}

.ie .navigation .submenu a:before {
  top: 13px;
}

@media (min-width: 751px) {
  body {
    position: static !important;
    top: auto !important;
    width: auto !important;
  }

  .header .ul-clinic {
    margin-top: 44px;
    width: 642px;
  }

  .header .ul-clinic li {
    float: left;
    width: 372px;
  }

  .header .ul-clinic li:first-child .item {
    margin-bottom: 6px;
  }

  .header .ul-clinic li:last-child {
    width: 253px;
  }

  .navigation {
    min-width: 1200px;
    height: 70px;
  }

  .navigation .toggle-nav {
    display: none !important;
    visibility: hidden;
  }

  .navigation .ul-menu {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 70px;
    padding-right: 19px;
  }

  .tablet .navigation .ul-menu {
    padding-left: 19px;
  }

  .navigation .ul-menu .menu-item {
    position: relative;
    margin-top: 12px;
    padding-bottom: 12px;
  }

  .navigation .ul-menu .menu-item:before {
    position: absolute;
    content: "";
    top: 50%;
    right: -50px;
    margin-top: -4px;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../img/common/icon_slash.png) no-repeat 0 0;
    width: 11px;
    height: 25px;
  }

  .ie .navigation .ul-menu .menu-item:before {
    margin-top: -8px;
  }

  .navigation .ul-menu .menu-item.last:before {
    background: none;
  }

  .desktop .navigation .ul-menu .menu-item.has-sub .link-nav:hover:before {
    background: none;
  }

  .navigation .ul-menu .menu-item.current .link-nav {
    color: #a14440;
  }

  .navigation .ul-menu .menu-item.current .link-nav:before {
    position: absolute;
    content: "";
    bottom: -24px;
    left: 0;
    background: #a14440;
    width: 100%;
    height: 2px;
  }

  .ie .navigation .ul-menu .menu-item.current .link-nav:before {
    bottom: -21px;
  }

  .navigation .ul-menu .link-nav {
    position: relative;
  }

  .desktop .navigation .ul-menu .link-nav:hover {
    color: #a14440;
  }

  .desktop .navigation .ul-menu .link-nav:hover:before {
    position: absolute;
    content: "";
    bottom: -24px;
    left: 0;
    background: #a14440;
    width: 100%;
    height: 2px;
  }

  .ie .desktop .navigation .ul-menu .link-nav:hover:before {
    bottom: -21px;
  }

  .navigation .submenu {
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }

  .navigation .submenu li:last-child {
    border-bottom: none;
  }

  .navigation .nav-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 190px;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .navigation .nav-sub .nav-sub-inner {
    position: relative;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    padding: 5px;
    background: url(../img/common/bg_pattern.png) repeat 0 0;
  }

  .navigation .nav-sub .nav-sub-inner:before {
    position: absolute;
    content: "";
    bottom: 100%;
    left: 0;
    right: 0;
    width: 19px;
    height: 7px;
    background: url(../img/common/caret.png) no-repeat 0 0;
    margin: 0 auto;
  }
}

@media (max-width: 750px) {
  .header {
    padding-top: 1.18rem;
  }

  .header .header-inner {
    height: 2rem;
  }

  .header .header-inner .wrapper-content {
    display: block;
  }

  .header .header-logo {
    float: left;
    margin: 0.19rem 0.48rem 0 0.26rem;
    width: 2.8rem;
  }

  .header .header-btn {
    *zoom: 1;
    float: left;
    margin-top: 0.28rem;
  }

  .header .header-btn:after {
    content: "";
    display: table;
    clear: both;
  }

  .header .header-btn a {
    float: left;
    display: block;
    margin-left: 0.06rem;
    width: 0.6rem;
  }

  .header .ul-clinic {
    padding: 0.56rem 0.2rem 0;
  }

  .header .ul-clinic li:not(:last-child) {
    padding-right: 0.14rem;
  }

  .header .ul-clinic .item {
    margin-bottom: 0.1rem;
  }

  .header .ul-clinic .th {
    font-size: 0.18rem;
    width: 0.9rem;
  }

  .header .ul-clinic .th span {
    padding: 0.06rem 2px;
    -moz-border-radius: 0.06rem;
    -webkit-border-radius: 0.06rem;
    border-radius: 0.06rem;
  }

  .header .ul-clinic .td {
    padding-left: 0.16rem;
    font-size: 0.18rem;
  }

  .header .ul-clinic .time {
    top: 0.04rem;
  }

  .header .ul-clinic .phone {
    width: 2.86rem;
    top: -0.04rem;
  }

  .header .ul-clinic .phone-reserved img {
    width: 1.8rem;
  }

  .header .top-header {
    *zoom: 1;
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    height: 1.18rem;
    background: #fff;
    -moz-box-shadow: 0 0 0.14rem rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 0 0.14rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0.14rem rgba(0, 0, 0, 0.3);
  }

  .header .top-header:after {
    content: "";
    display: table;
    clear: both;
  }

  .header .btn-menu {
    margin-top: 0.27rem;
    margin-right: 0.26rem;
    float: right;
    width: 1.4rem;
    height: 0.58rem;
    background: url(../img/common/sp/btn_menu.png) no-repeat 0 0;
    -moz-background-size: auto 0.58rem;
    -o-background-size: auto 0.58rem;
    -webkit-background-size: auto 0.58rem;
    background-size: auto 0.58rem;
  }

  .navigation {
    left: -100% !important;
    top: 0;
    bottom: 0;
    width: 3.52rem;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -moz-transition: left 0.4s ease-in-out;
    -o-transition: left 0.4s ease-in-out;
    -webkit-transition: left 0.4s ease-in-out;
    transition: left 0.4s ease-in-out;
    z-index: 9999;
  }

  .navigation.active {
    left: 0 !important;
  }

  .navigation .toggle-nav {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    background: url(../img/common/sp/expand_off.png) no-repeat center center;
    -moz-background-size: 0.19rem auto;
    -o-background-size: 0.19rem auto;
    -webkit-background-size: 0.19rem auto;
    background-size: 0.19rem auto;
    width: 0;
    text-indent: -9999px;
    overflow: hidden;
    padding: 0.1rem 0.3rem;
  }

  .navigation .toggle-nav.is-open {
    background-image: url(../img/common/sp/expand_on.png);
  }

  .navigation .menu-item {
    position: relative;
  }

  .navigation .ul-menu .link-nav {
    padding: 0.18rem 0.4rem 0.16rem;
    font-size: 0.22rem;
    display: block;
    border-bottom: 1px solid #ddd;
  }

  .navigation .submenu {
    background: #eee;
  }

  .navigation .submenu li {
    border-bottom-color: #ddd;
  }

  .navigation .submenu a {
    padding: 0.2rem 0.1rem 0.2rem 0.98rem;
    font-size: 0.18rem;
  }

  .navigation .submenu a:before {
    width: 0.08rem;
    height: 0.08rem;
    top: 0.26rem;
    left: 0.82rem;
  }

  .nav-inner {
    padding-bottom: 0.4rem;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9990;
    background: rgba(0, 0, 0, 0.3);
  }
}

/* COMMON FOOTER
 * ----------------------------------------------- */
.section-clinic-info {
  padding-bottom: 81px;
}

.section-clinic-info .image-clinic {
  position: relative;
  height: 400px;
  background: url(../img/common/img_clinic.jpg) no-repeat 50% 0;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}

.section-clinic-info .image-clinic:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  /*
  background: url(../img/common/bg_gradient.png) repeat-x 0 100%;
  */
  width: 100%;
  height: 100%;
}

.section-clinic-info .logo-clinic {
  position: relative;
  margin: -63px 0 45px;
}

.section-clinic-info .info-clinic {
  margin: 31px 0 84px 57px;
}

.section-clinic-info .block-clinic {
  padding-right: 12px;
}

.section-clinic-info .block-clinic .col-access {
  width: 600px;
}

.section-clinic-info .block-clinic .col-access .w-lead {
  margin-bottom: 31px;
}

.section-clinic-info .block-clinic .col-access .w-lead .sec-title {
  margin-top: 8px;
  left: 56px;
}

.section-clinic-info .block-clinic .col-access .w-lead .sec-title .ja {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  letter-spacing: 0.2em;
}

.section-clinic-info .block-clinic .col-access .desc {
  padding: 0 27px;
}

.section-clinic-info .block-clinic .col-order {
  width: 434px;
}

.section-clinic-info .block-clinic .col-order .ttl {
  margin: 0 0 10px -18px;
  border-top: 1px solid #382617;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.section-clinic-info .block-clinic .col-order .ttl span {
  position: relative;
  top: -16px;
  display: inline-block;
  padding: 0 15px;
  background: #fff;
}

.section-clinic-info .block-clinic .col-order .box-time {
  display: table;
  margin-top: 20px;
}

.section-clinic-info .block-clinic .col-order .box-time>* {
  display: table-cell;
  vertical-align: middle;
}

.section-clinic-info .block-clinic .col-order .box-time .text {
  font-size: 14px;
  font-weight: bold;
  width: 76px;
}

.section-clinic-info .block-clinic .col-order .reserved {
  float: left;
  width: 244px;
}

.section-clinic-info .block-clinic .col-order .qrcode {
  float: right;
  width: 165px;
}

.section-clinic-info .block-clinic .col-order .list-order {
  margin: 50px 11px 0 -11px;
  border-bottom: 1px solid #382617;
  padding: 0 28px 35px 29px;
  font-weight: bold;
  line-height: 1.6;
}

.section-clinic-info .block-clinic .col-order .list-order li {
  position: relative;
  margin-bottom: 3px;
  padding-left: 23px;
}

.section-clinic-info .block-clinic .col-order .list-order li:before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  background: #004c66;
}

.info-clinic {
  font-weight: bold;
  line-height: 1.2;
}

.info-clinic li {
  margin-bottom: 23px;
}

.info-clinic li.cover {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.info-clinic .inner {
  display: table;
  padding-right: 22px;
}

.info-clinic .inner>* {
  display: table-cell;
  vertical-align: middle;
}

.info-clinic .ttl {
  width: 70px;
  font-size: 14px;
  text-align: center;
}

.info-clinic .ttl span {
  display: block;
  background: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 5px 2px 4px;
}

.info-clinic .text {
  padding-left: 14px;
  font-size: 18px;
}

.info-clinic .address span {
  padding-right: 16px;
}

.info-clinic .phone {
  display: block;
  margin-top: -8px;
}

.time {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
}

.time .space {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  margin: 0 8px;
}

.copyright {
  background: #382617;
  color: #fff;
  padding: 31px 10px 35px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 750px) {
  .section-clinic-info {
    padding-bottom: 0.8rem;
  }

  .section-clinic-info .image-clinic {
    height: 4rem;
  }

  .section-clinic-info .image-clinic:before {
    -moz-background-size: auto 1.38rem;
    -o-background-size: auto 1.38rem;
    -webkit-background-size: auto 1.38rem;
    background-size: auto 1.38rem;
  }

  .section-clinic-info .logo-clinic {
    margin: -0.64rem 0 0.46rem;
    width: 4.14rem;
  }

  .section-clinic-info .info-clinic {
    margin: 0.3rem 0 0.84rem;
  }

  .section-clinic-info .block-clinic {
    padding-right: 0;
  }

  .section-clinic-info .block-clinic .col-access {
    margin-bottom: 0.4rem;
    width: auto;
  }

  .section-clinic-info .block-clinic .col-access .w-lead {
    margin-bottom: 0.3rem;
  }

  .section-clinic-info .block-clinic .col-access .w-lead .sec-title {
    margin-top: 0.08rem;
    left: 0.56rem;
  }

  .section-clinic-info .block-clinic .col-access .desc {
    padding: 0 0.26rem;
  }

  .section-clinic-info .block-clinic .col-order {
    width: auto;
  }

  .section-clinic-info .block-clinic .col-order .ttl {
    margin: 0 0 0.1rem;
    font-size: 0.26rem;
  }

  .section-clinic-info .block-clinic .col-order .ttl span {
    top: -0.16rem;
    padding: 0 0.2rem;
  }

  .section-clinic-info .block-clinic .col-order .banner {
    margin: 0 auto;
    width: 3.6rem;
  }

  .section-clinic-info .block-clinic .col-order .box-time {
    margin-top: 0.22rem;
  }

  .section-clinic-info .block-clinic .col-order .box-time .text {
    font-size: 0.22rem;
    width: 1.1rem;
  }

  .section-clinic-info .block-clinic .col-order .box-time .time img {
    width: 3.3rem;
  }

  .section-clinic-info .block-clinic .col-order .reserved {
    width: 4.8rem;
  }

  .section-clinic-info .block-clinic .col-order .qrcode {
    margin: 0 auto;
    width: 2.2rem;
  }

  .section-clinic-info .block-clinic .col-order .list-order {
    margin: 0.5rem 0.12rem 0;
    padding: 0 0.28rem 0.34rem 0.3rem;
  }

  .section-clinic-info .block-clinic .col-order .list-order li {
    margin-bottom: 0.04rem;
    padding-left: 0.22rem;
  }

  .section-clinic-info .block-clinic .col-order .list-order li:before {
    top: 0.1rem;
    width: 0.1rem;
    height: 0.1rem;
  }

  .info-clinic li {
    margin-bottom: 0.24rem;
  }

  .info-clinic li.cover {
    display: block;
  }

  .info-clinic li.cover .inner {
    padding-bottom: 0.24rem;
  }

  .info-clinic .inner {
    padding: 0;
  }

  .info-clinic .ttl {
    vertical-align: top;
    width: 1.1rem;
    font-size: 0.22rem;
  }

  .info-clinic .ttl span {
    -moz-border-radius: 0.06rem;
    -webkit-border-radius: 0.06rem;
    border-radius: 0.06rem;
    padding: 0.06rem 2px 0.04rem;
  }

  .info-clinic .text {
    padding-left: 0.18rem;
    font-size: 0.24rem;
  }

  .info-clinic .address span {
    padding-right: 0.16rem;
  }

  .info-clinic .phone {
    margin-top: 0;
    width: 3rem;
  }

  .time {
    font-size: 0.26rem;
  }

  .time .space {
    display: inline-block;
    margin: 0 0.1rem;
    width: 0.12rem;
  }

  .copyright {
    padding: 0.3rem 0.1rem 0.34rem;
    font-size: 0.24rem;
  }
}

strong {
  font-weight: bold;
}

.img {
  display: block;
  max-width: 100%;
}

.alink {
  color: #004c66;
  text-decoration: underline;
}

.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.main {
  background: #f5f5f5;
}

.desc-bl {
  font-size: 18px;
}

.desc-bl p:not(:last-child) {
  margin-bottom: 22px;
}

@media (min-width: 751px) {
  .alink:hover {
    text-decoration: none;
  }

  .section-inner {
    width: 980px;
    margin: 0 auto;
  }
}

@media (max-width: 750px) {
  .desc-bl {
    font-size: 0.22rem;
  }

  .desc-bl p:not(:last-child) {
    margin-bottom: 0.22rem;
  }
}

/* COMMON FLEX
 * ----------------------------------------------- */
@media (min-width: 751px) {
  .d-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .d-flex-wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .justify-content-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .justify-content-between {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .align-items-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}

.ls-flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ls-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.ls-between {
  -ms-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.ls-flex-item {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-order {
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

/* COMMON TITLES
 * ----------------------------------------------- */
.w-lead {
  position: relative;
  display: inline-block;
}

.w-lead .rounded img {
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.w-lead .sec-title {
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.w-lead .bubble-lbl {
  position: absolute;
  top: -44px;
  right: -14px;
}

.w-lead .w-button {
  position: absolute;
  bottom: -18px;
  right: 25px;
}

.w-lead .w-button .btn-primary+.btn-primary {
  margin-left: 10px;
}

.page-heading {
  padding: 71px 0;
}

.page-heading .sec-title .en {
  margin-top: 4px;
}

.sec-title {
  overflow: hidden;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.sec-title.fs .ja {
  font-size: 26px;
  letter-spacing: 0;
}

.sec-title.cover {
  border-left: 18px solid #a14440;
  padding: 0 0 5px 34px;
  text-align: left;
}

.sec-title.cover .ja {
  letter-spacing: 0;
}

.sec-title.cover .en {
  margin: 2px 0 0 4px;
}

.sec-title .ja {
  font-size: 32px;
  letter-spacing: 0.3em;
  text-shadow: 2px 2px 1px #fff, -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff;
}

.sec-title .en {
  display: block;
  color: #a14440;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

.sec-title01 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.sec-title02 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.sec-title02 .txt-small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.sttl {
  padding: 17px 55px 13px;
  font-size: 18px;
  font-weight: bold;
  background: rgba(236, 232, 232, 0.5);
}

.pttl {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  font-weight: bold;
}

.pttl.clr {
  color: #9f443f;
}

.pttl.ls {
  letter-spacing: -0.11em;
}

.pttl.ls01 {
  letter-spacing: -0.05em;
}

.pttl:before {
  position: absolute;
  content: "";
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #382617;
}

.ie .pttl:before {
  top: 8px;
}

.bubble {
  display: table;
  background: url(../img/common/bg_bubble.png) no-repeat 0 0;
  color: #fff;
  padding: 14px 10px 7px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  width: 111px;
  height: 111px;
  overflow: hidden;
  text-align: center;
}

.bubble span {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 750px) {
  .w-lead {
    display: block;
  }

  .w-lead .rounded img {
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
  }

  .w-lead .bubble-lbl {
    width: 1.12rem;
    height: 1.12rem;
    top: -0.44rem;
    right: -0.14rem;
  }

  .w-lead .w-button {
    bottom: -0.18rem;
    right: 0.24rem;
  }

  .w-lead .w-button .btn-primary+.btn-primary {
    margin-left: 0.1rem;
  }

  .page-heading {
    padding: 0.7rem 0;
  }

  .page-heading .sec-title .en {
    margin-top: 0.04rem;
  }

  .sec-title.fs .ja {
    font-size: 0.26rem;
  }

  .sec-title.cover {
    border-left-width: 0.18rem;
    padding: 0 0 0.04rem 0.34rem;
  }

  .sec-title.cover .en {
    margin: 0.02rem 0 0 0.04rem;
  }

  .sec-title .ja {
    font-size: 0.3rem;
    text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 2px 1px #fff;
  }

  .sec-title .en {
    margin-top: 0.1rem;
    font-size: 0.22rem;
  }

  .sec-title01 {
    margin-bottom: 0.2rem;
    font-size: 0.24rem;
  }

  .sec-title02 {
    font-size: 0.24rem;
  }

  .sec-title02 .txt-small {
    margin-top: 0.06rem;
    font-size: 0.2rem;
  }

  .sttl {
    padding: 0.6em 0.54rem 0.14rem;
    font-size: 0.24rem;
    line-height: 1.2;
  }

  .pttl {
    padding-left: 0.14rem;
    font-size: 0.23rem;
  }

  .pttl:before {
    top: 0.12rem;
    width: 0.06rem;
    height: 0.06rem;
  }

  .bubble {
    -moz-background-size: 100%;
    -o-background-size: 100%;
    -webkit-background-size: 100%;
    background-size: 100%;
    padding: 0.14rem 0.1rem 0.08rem;
    font-size: 0.2rem;
    width: 1.11rem;
    height: 1.11rem;
  }

  .ios7 .bubble {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* COMMON BUTTONS
 * ----------------------------------------------- */
.btn-primary {
  display: inline-block;
  color: #fff;
  background: #a14440 url(../img/common/icon_arrow.png) no-repeat 95% 50%;
  min-height: 50px;
  line-height: 50px;
  width: 230px;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}

.btn-primary.small {
  width: 170px;
}

.ie .btn-primary {
  min-height: 48px;
  line-height: 50px;
}

.ie .btn-primary span {
  padding-bottom: 4px;
}

.btn-primary span {
  display: inline-block;
  vertical-align: middle;
  padding: 8px 20px 10px;
  line-height: 1.2;
  font-size: 1.1em !important;
  font-weight: normal;
}

.tablet .btn-primary span {
  padding-top: 4px;
}

.ie .btn-primary span {
  padding-top: 8px;
}

@media (max-width: 750px) {
  .btn-primary {
    background-position: 94% 50%;
    -moz-background-size: auto 0.12rem;
    -o-background-size: auto 0.12rem;
    -webkit-background-size: auto 0.12rem;
    background-size: auto 0.12rem;
    min-height: 0.54rem;
    line-height: 0.54rem;
    width: auto;
    min-width: 2.4rem;
    font-size: 0.22rem;
  }

  .btn-primary span {
    padding: 0.1rem 0.38rem;
  }
}

/* COMMON PARTS
 * ----------------------------------------------- */
.work-time .tbl-time {
  border-top: 1px solid #382617;
  background: #fff;
}

.work-time .tbl-time thead th {
  padding: 21px 5px 23px;
}

.work-time .tbl-time th,
.work-time .tbl-time td {
  border-bottom: 1px solid #382617;
  vertical-align: middle;
  font-weight: bold;
  font-family: "メイリオ", Meiryo, sans-serif;
  line-height: 1.2;
  text-align: center;
}

.work-time .tbl-time th {
  font-size: 18px;
  padding: 22px 0 19px;
}

.work-time .tbl-time th.bg {
  background: #e7f0fa;
}

.work-time .tbl-time th.col {
  width: 245px;
}

.work-time .tbl-time td {
  padding: 4px;
  color: #004c66;
  font-size: 16px;
  width: 122px;
}

.work-time .tbl-time td.off {
  color: #ff9b9b;
  font-size: 20px;
  font-weight: normal;
}

.work-time .tbl-time td .mark {
  font-size: 20px;
  font-weight: normal;
}

.work-time .tbl-time td .space {
  padding: 4px 0 0 20px;
  text-align: left;
}

.work-time .tbl-time td .space01 {
  padding-left: 10px;
}

/* block-cataract */
.block-cataract {
  padding: 0 26px 0 23px;
}

.block-cataract .box {
  width: 757px;
}

.block-cataract .box:last-child {
  width: 370px;
}

.block-cataract .box:last-child .w-lead .sec-title {
  left: 39px;
}

.block-cataract .w-lead {
  margin-bottom: 27px;
}

.block-cataract .w-lead .sec-title {
  margin-top: 4px;
  left: 54px;
}

.block-cataract .w-lead .sec-title .en {
  padding-left: 8px;
}

.block-cataract .w-lead .bubble-lbl {
  top: -21px;
  left: 260px;
}

.block-cataract .w-lead .w-button {
  bottom: -28px;
  right: 21px;
}

.block-cataract .desc {
  padding: 0 32px;
}

/* block-doctor */
.block-doctor .box-ct {
  width: 666px;
}

.block-doctor .box-img {
  width: 400px;
  text-align: center;
}

.block-doctor .img-rounded {
  padding: 10px;
  background: url(../img/common/bg_pattern_red.png) repeat 0 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.block-doctor .img-rounded img {
  display: block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.block-doctor .desc {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.block-doctor .name {
  margin: 15px 12px 0 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
}

.block-doctor .w-button {
  margin-top: -50px;
}

.badge {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: #ece8e8;
  border: 2px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  line-height: 1.2;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.badge img {
  display: block;
  margin: 0 auto 6px;
}

.badge .in {
  display: block;
  width: 100%;
}

.badge .txt {
  display: block;
  background: url(../img/common/icon_arrow02.png) no-repeat 100% 50%;
}

.badge .ls {
  letter-spacing: -0.1em;
}

.txt-map {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 37px 0;
  padding: 21px 10px 22px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.ie .txt-map {
  padding-top: 25px;
  padding-bottom: 16px;
}

.list-text {
  font-size: 18px;
}

.list-text li {
  position: relative;
  padding-left: 17px;
}

.list-text li:before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #382617;
}

.flag {
  display: inline-block;
  position: relative;
  color: #fff;
  background-color: #a14440;
  min-width: 117px;
  padding: 7px 14px 7px 9px;
  line-height: 1;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-align: center;
}

.ie.windows10 .flag {
  padding-top: 9px;
  padding-bottom: 5px;
}

.flag.cover {
  background-color: #cdcdcd;
}

.flag:before,
.flag:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  right: 0;
}

.flag:before {
  border-bottom: 13px solid #f5f5f5;
  bottom: 0;
}

.flag:after {
  border-top: 13px solid #f5f5f5;
  top: 0;
}

@media (max-width: 750px) {
  .work-time .tbl-time {
    overflow-x: scroll;
    width: 101%;
  }

  .work-time .tbl-time::-webkit-scrollbar {
    height: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .work-time .tbl-time::-webkit-scrollbar-thumb {
    background: #e6e6e6;
    -moz-border-radius: 0.8rem;
    -webkit-border-radius: 0.8rem;
    border-radius: 0.8rem;
  }

  .work-time .tbl-time th,
  .work-time .tbl-time td {
    white-space: nowrap;
  }

  .work-time .tbl-time thead th {
    min-width: 1.3rem;
    padding: 0.2rem 0.1rem 0.24rem;
  }

  .work-time .tbl-time th {
    font-size: 0.22rem;
    padding: 0.2rem 0.04rem;
  }

  .work-time .tbl-time th.col {
    width: 3rem;
  }

  .work-time .tbl-time td {
    width: 1.22rem;
    padding: 0.1rem;
    font-size: 0.22rem;
  }

  .work-time .tbl-time td.off {
    font-size: 0.22rem;
  }

  .work-time .tbl-time td .mark {
    font-size: 0.22rem;
  }

  .work-time .tbl-time td .space {
    padding: 0.04rem 0 0 0.2rem;
  }

  .work-time .tbl-time .time {
    padding: 0.06rem 0 0 0.26rem;
    font-size: 0.24rem;
  }

  .block-cataract {
    padding: 0;
  }

  .block-cataract .box {
    margin-bottom: 0.3rem;
    width: auto;
  }

  .block-cataract .box:last-child {
    width: auto;
  }

  .block-cataract .box:last-child .w-lead .sec-title {
    left: 0.4rem;
  }

  .block-cataract .w-lead {
    margin-bottom: 0.4rem;
  }

  .block-cataract .w-lead .sec-title {
    margin-top: 0.04rem;
    left: 0.54rem;
  }

  .block-cataract .w-lead .sec-title .en {
    padding-left: 0.08rem;
  }

  .block-cataract .w-lead .bubble-lbl {
    top: -0.2rem;
    left: 2.6rem;
  }

  .block-cataract .w-lead .w-button {
    bottom: -0.28rem;
    right: 0.2rem;
  }

  .block-cataract .desc {
    padding: 0 0.26rem;
  }

  .block-doctor .box-ct {
    width: auto;
  }

  .block-doctor .box-img {
    margin: 0;
    width: auto;
  }

  .block-doctor .img-rounded {
    padding: 0.1rem;
  }

  .block-doctor .w-button {
    margin-top: -0.5rem;
  }

  .block-doctor .desc {
    font-size: 0.22rem;
  }

  .block-doctor .name {
    margin: 0.14rem 0.12rem 0 0;
    font-size: 0.24rem;
  }

  .badge {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.1rem;
    font-size: 0.22rem;
    border-width: 0.02rem;
    -moz-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -webkit-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
  }

  .badge img {
    margin-bottom: 0.1rem;
    width: auto;
    height: 0.74rem;
  }

  .badge .txt {
    -moz-background-size: auto 0.12rem;
    -o-background-size: auto 0.12rem;
    -webkit-background-size: auto 0.12rem;
    background-size: auto 0.12rem;
  }

  .txt-map {
    margin: 0.4rem 0;
    padding: 0.22rem 0.1rem;
    font-size: 0.3rem;
  }

  .list-text {
    font-size: 0.22rem;
  }

  .list-text li {
    padding-left: 0.18rem;
  }

  .list-text li:before {
    top: 0.1rem;
    width: 0.08rem;
    height: 0.08rem;
  }

  .flag {
    min-width: 1.18rem;
    padding: 0.12rem 0.14rem 0.06rem 0.1rem;
    font-size: 0.2rem;
  }

  .flag:before,
  .flag:after {
    border-left-width: 0.1rem;
  }

  .flag:before {
    border-bottom-width: 0.18rem;
  }

  .flag:after {
    border-top-width: 0.18rem;
  }
}

/* PAGES
 * ----------------------------------------------- */
/* PAGE TOP
 * ----------------------------------------------- */
.section-top-info {
  padding-bottom: 95px;
}

.section-top-info .sec-title {
  text-align: left;
}

.section-top-info .keyvisual {
  position: relative;
  height: 350px;
  background: url(../img/top/keyvisual.jpg) no-repeat 50% 0;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

.section-top-info .keyvisual .btn-primary {
  position: absolute;
  bottom: 0;
  background-position: 95% 50%;
  width: 211px;
  min-height: 40px;
  line-height: 40px;
}

.section-top-info .keyvisual .btn-primary span {
  padding-left: 0;
  padding-right: 10px;
}

.section-top-info .block-top-news {
  position: relative;
  margin: -2px 0 56px;
  padding: 21px 0 7px;
  background: #fff;
  border: 3px solid #a14440;
  -moz-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
}

.section-top-info .block-top-news .list-news {
  font-weight: bold;
  line-height: 1.2;
}

.section-top-info .block-top-news .list-news li {
  *zoom: 1;
  margin-bottom: 22px;
  width: 50%;
}

.section-top-info .block-top-news .list-news li:after {
  content: "";
  display: table;
  clear: both;
}

.section-top-info .block-top-news .list-news li>* {
  display: block;
}

.section-top-info .block-top-news .list-news .date {
  float: left;
  padding-top: 4px;
  width: 126px;
  color: #a0443f;
  font-size: 14px;
}

.tablet .section-top-info .block-top-news .list-news .date {
  width: 130px;
}

.ie .section-top-info .block-top-news .list-news .date {
  width: 130px;
}

.section-top-info .block-top-news .list-news .txt {
  float: right;
  width: -ms-calc(100% - 130px);
  width: -moz-calc(100% - 130px);
  width: -webkit-calc(100% - 130px);
  font-size: 18px;
  text-decoration: underline;
}

.ie .section-top-info .block-top-news .list-news .txt {
  width: 74%;
}

.tablet .section-top-info .block-top-news .list-news .txt {
  width: 74%;
}

.section-top-info .block-top-news .list-news .txt:hover {
  text-decoration: none;
}

.section-top-info .grid-top-info {
  margin-bottom: 33px;
  padding-left: 25px;
}

.section-top-info .grid-top-info .block-ophthal {
  width: 600px;
}

.section-top-info .grid-top-info .block-ophthal .w-lead {
  margin-bottom: 39px;
}

.section-top-info .grid-top-info .block-ophthal .w-lead .sec-title {
  left: 52px;
  margin-top: -4px;
}

.section-top-info .grid-top-info .block-ophthal .w-lead .sec-title .en {
  padding: 2px 0 0 8px;
}

.section-top-info .grid-top-info .block-ophthal .desc {
  padding: 0 27px;
}

.section-top-info .grid-top-info .block-eye-disease {
  margin-right: 70px;
  width: 471px;
}

.section-top-info .grid-top-info .box-disease {
  margin-bottom: 23px;
  padding: 16px 0 19px;
  border-bottom: 1px solid #382617;
}

.section-top-info .grid-top-info .box-disease .ttl {
  border-top: 1px solid #382617;
  margin-bottom: -5px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.section-top-info .grid-top-info .box-disease .ttl span {
  position: relative;
  display: inline-block;
  top: -24px;
  padding: 0 20px;
  background: #f5f5f5;
}

.section-top-info .grid-top-info .box-disease .list-disease .col {
  float: left;
  padding-left: 20px;
  width: 50%;
}

.section-top-info .grid-top-info .box-disease .list-disease a {
  position: relative;
  display: inline-block;
  min-width: 104px;
  margin-bottom: 13px;
  padding-left: 15px;
  color: #a14440;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: underline;
}

.section-top-info .grid-top-info .box-disease .list-disease a:before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #382617;
}

.section-top-info .grid-top-info .box-disease .list-disease .space {
  padding-right: 5px;
}

.section-top-info .list-badge {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.section-top-info .list-badge .badge {
  margin: 0 4px;
}

.section-top-info .list-col {
  margin-top: 28px;
}

.section-top-info .list-col .col-item {
  margin-right: 20px;
  width: 370px;
}

.section-top-info .list-col .col-item:nth-child(3n) {
  margin-right: 0;
}

.section-top-info .list-col .w-lead {
  margin-bottom: 38px;
}

.section-top-info .list-col .w-lead .sec-title {
  margin-top: -3px;
  left: 38px;
}

.section-top-info .list-col .w-lead .sec-title .en {
  margin-top: 2px;
  padding-left: 3px;
}

.section-top-info .list-col .w-lead .w-button {
  bottom: -28px;
  right: 18px;
}

.section-top-info .list-col .desc {
  padding: 0 18px;
}

.section-top-concept {
  background: #fff;
  margin-bottom: 32px;
}

.section-top-concept .sec-title {
  margin: 0 0 24px -50px;
  padding: 0 0 5px 34px;
  border-left: 18px solid #a14440;
  text-align: left;
}

.section-top-concept .sec-title .ja {
  position: relative;
  letter-spacing: 0;
}

.section-top-concept .sec-title .en {
  padding-left: 3px;
}

.section-top-concept .block-doctor .box-ct {
  padding-top: 57px;
}

.section-top-concept .block-doctor .box-img {
  margin-top: -21px;
}

@media (max-width: 750px) {
  .section-top-info {
    padding-bottom: 0.34rem;
  }

  .section-top-info .wrapper-content {
    padding: 0 0.2rem;
  }

  .section-top-info .keyvisual {
    height: 3.5rem;
  }

  .section-top-info .keyvisual .btn-primary {
    left: 0.2rem;
    width: 3rem;
    min-height: 0.5rem;
    line-height: 0.5rem;
  }

  .section-top-info .keyvisual .btn-primary span {
    padding-right: 0.1rem;
  }

  .section-top-info .block-top-news {
    margin: -0.02rem 0 0.56rem;
    padding: 0.2rem 0 0.08rem;
    border-width: 0.03rem;
    -moz-box-shadow: 0.04rem 0.04rem 0.04rem rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0.04rem 0.04rem 0.04rem rgba(0, 0, 0, 0.6);
    box-shadow: 0.04rem 0.04rem 0.04rem rgba(0, 0, 0, 0.6);
  }

  .section-top-info .block-top-news .list-news li {
    margin-bottom: 0.22rem;
    width: auto;
  }

  .section-top-info .block-top-news .list-news .date {
    float: left;
    padding-top: 0;
    width: 2rem;
    font-size: 0.2rem;
  }

  .section-top-info .block-top-news .list-news .txt {
    width: -ms-calc(100% - 2rem);
    width: -moz-calc(100% - 2rem);
    width: -webkit-calc(100% - 2rem);
    font-size: 0.22rem;
  }

  .section-top-info .grid-top-info {
    margin-bottom: 0.34rem;
    padding: 0;
  }

  .section-top-info .grid-top-info .block-ophthal {
    width: auto;
  }

  .section-top-info .grid-top-info .block-ophthal .w-lead {
    margin-bottom: 0.4rem;
  }

  .section-top-info .grid-top-info .block-ophthal .w-lead .sec-title {
    left: 0.52rem;
    margin-top: -0.04rem;
  }

  .section-top-info .grid-top-info .block-ophthal .w-lead .sec-title .en {
    padding: 0.02rem 0 0 0.08rem;
  }

  .section-top-info .grid-top-info .block-ophthal .desc {
    padding: 0 0.26rem;
  }

  .section-top-info .grid-top-info .block-eye-disease {
    margin: 0.4rem 0 0;
    width: auto;
  }

  .section-top-info .grid-top-info .box-disease {
    margin-bottom: 0.24rem;
    padding: 0.16rem 0 0.2rem;
  }

  .section-top-info .grid-top-info .box-disease .ttl {
    margin-bottom: 0;
    font-size: 0.26rem;
  }

  .section-top-info .grid-top-info .box-disease .ttl span {
    top: -0.24rem;
    padding: 0 0.2rem;
  }

  .section-top-info .grid-top-info .box-disease .list-disease .col {
    padding-left: 0.2rem;
  }

  .section-top-info .grid-top-info .box-disease .list-disease a {
    min-width: 1.04rem;
    margin-bottom: 0.14rem;
    padding-right: 0.14rem;
    padding-left: 0.14rem;
    font-size: 0.22rem;
  }

  .section-top-info .grid-top-info .box-disease .list-disease a:before {
    top: 0.08rem;
    width: 0.06rem;
    height: 0.06rem;
  }

  .section-top-info .grid-top-info .box-disease .list-disease .space {
    padding-right: 0.1rem;
  }

  .section-top-info .list-badge {
    margin: 0 -0.04rem;
  }

  .section-top-info .list-badge .badge {
    width: 33.33%;
    margin: 0 0.1em;
  }

  .section-top-info .list-col {
    margin-top: 0.28rem;
  }

  .section-top-info .list-col .col-item {
    margin: 0 0 0.3rem;
    width: auto;
  }

  .section-top-info .list-col .w-lead {
    margin-bottom: 0.38rem;
  }

  .section-top-info .list-col .w-lead .sec-title {
    margin-top: 0;
    left: 0.38rem;
  }

  .section-top-info .list-col .w-lead .w-button {
    bottom: -0.28rem;
    right: 0.18rem;
  }

  .section-top-info .list-col .desc {
    padding: 0 0.26rem;
  }

  .section-top-concept {
    margin-bottom: 0.4rem;
  }

  .section-top-concept .sec-title {
    margin: 0 0 0.24rem;
    padding: 0 0 0.1rem 0.34rem;
    border-left-width: 0.18rem;
  }

  .section-top-concept .sec-title .en {
    padding-left: 3px;
  }

  .section-top-concept .block-doctor .box-ct {
    padding-top: 0.6rem;
  }

  .section-top-concept .block-doctor .box-img {
    margin-top: 0.4rem;
  }
}

/* PAGE ABOUT
 * ----------------------------------------------- */
.section-about {
  margin-bottom: 88px;
}

.section-about .page-heading {
  padding-bottom: 69px;
}

.section-about .block-principle {
  position: relative;
  margin: 0 -4px;
}

.section-about .block-principle:before,
.section-about .block-principle:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 250px;
  height: 222px;
  background: url(../img/about/bg_pattern03.png) no-repeat top left;
}

.section-about .block-principle:after {
  top: auto;
  bottom: 0;
  background-image: url(../img/about/bg_pattern04.png);
  background-position: bottom left;
}

.section-about .block-principle .box {
  position: relative;
}

.section-about .block-principle .box:before,
.section-about .block-principle .box:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 250px;
  height: 222px;
  background: url(../img/about/bg_pattern03.png) no-repeat top right;
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.section-about .block-principle .box:after {
  top: auto;
  bottom: 0;
  height: 250px;
  background-image: url(../img/about/bg_pattern.png);
  background-position: bottom right;
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

.section-about .block-principle .inner {
  position: relative;
  padding: 55px 0;
  min-height: 444px;
}

.section-about .block-principle .inner:before,
.section-about .block-principle .inner:after {
  position: absolute;
  content: "";
  top: 9px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 22px;
  background: url(../img/about/bg_pattern01.png) no-repeat 0 0;
}

.section-about .block-principle .inner:after {
  top: auto;
  bottom: 10px;
  background-image: url(../img/about/bg_pattern02.png);
}

.section-about .block-principle .ttl {
  margin-bottom: 50px;
  color: #004c66;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.section-about .block-principle .list-principle {
  position: relative;
  z-index: 1;
  width: 830px;
  margin: 0 auto;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.section-about .block-principle .list-principle li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 21px;
  letter-spacing: -0.05em;
}

.section-about .block-principle .list-principle li:before {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  display: block;
  width: 7px;
  height: 7px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #382617;
}

.section-about-intro {
  margin-bottom: 116px;
}

.section-about-intro .sec-title {
  margin-bottom: 37px;
}

.section-about-intro .thumb-about {
  margin-bottom: 26px;
  text-align: center;
}

.section-about-intro .desc-about {
  padding: 0 35px;
}

.section-about-intro .btn-group {
  margin: 30px 0 52px;
  text-align: center;
}

.section-about-intro .btn-group .btn-primary {
  margin: 0 8px;
}

.section-about-intro .btn-group .btn-primary span {
  padding-left: 0;
  padding-right: 10px;
}

.section-about-intro .list-room li {
  margin-bottom: 9px;
  width: 50%;
}

.section-about-intro .list-room .thumb-about {
  margin-bottom: 20px;
}

.section-about-intro .list-room .thumb-about img {
  width: 100%;
}

.section-about-intro .list-room .sec-title01 {
  margin-bottom: 5px;
}

.section-about-equipment {
  padding-bottom: 68px;
}

.section-about-equipment .sec-title {
  margin-bottom: 27px;
}

.section-about-equipment .list-equipment li {
  margin-right: 2px;
  margin-bottom: 32px;
  width: 365px;
}

.section-about-equipment .list-equipment li:nth-child(3n) {
  margin-right: 0;
}

.section-about-equipment .list-equipment .thumb-about {
  margin-bottom: 20px;
}

.section-about-equipment .list-equipment .sec-title01 {
  margin-bottom: 2px;
}

.section-about-equipment .list-equipment .desc-about {
  padding: 0 16px 0 26px;
}

@media (max-width: 750px) {
  .section-about {
    margin-bottom: 0.88rem;
  }

  .section-about .page-heading {
    padding-bottom: 0.7rem;
  }

  .section-about .block-principle {
    margin: 0;
  }

  .section-about .block-principle:before,
  .section-about .block-principle:after {
    width: 2.5rem;
    height: 2.22rem;
    -moz-background-size: 2.5rem auto;
    -o-background-size: 2.5rem auto;
    -webkit-background-size: 2.5rem auto;
    background-size: 2.5rem auto;
  }

  .section-about .block-principle .box:before,
  .section-about .block-principle .box:after {
    width: 2.5rem;
    height: 2.22rem;
    -moz-background-size: 2.5rem auto;
    -o-background-size: 2.5rem auto;
    -webkit-background-size: 2.5rem auto;
    background-size: 2.5rem auto;
  }

  .section-about .block-principle .box:after {
    height: 2.5rem;
    -moz-background-size: 2.5rem auto;
    -o-background-size: 2.5rem auto;
    -webkit-background-size: 2.5rem auto;
    background-size: 2.5rem auto;
  }

  .section-about .block-principle .inner {
    padding: 0.56rem 0 1rem;
    min-height: 4.44rem;
  }

  .section-about .block-principle .inner:before,
  .section-about .block-principle .inner:after {
    top: 0.1rem;
    margin-left: -0.5rem;
    width: 1rem;
    height: 0.22rem;
    -moz-background-size: 1rem auto;
    -o-background-size: 1rem auto;
    -webkit-background-size: 1rem auto;
    background-size: 1rem auto;
  }

  .section-about .block-principle .inner:after {
    bottom: 0.1rem;
  }

  .section-about .block-principle .ttl {
    margin-bottom: 0.5rem;
    font-size: 0.3rem;
  }

  .section-about .block-principle .list-principle {
    width: 65%;
    font-size: 0.22rem;
  }

  .section-about .block-principle .list-principle li {
    margin-bottom: 0.2rem;
    padding-left: 0.2rem;
  }

  .section-about .block-principle .list-principle li:before {
    top: 0.1rem;
    width: 0.08rem;
    height: 0.08rem;
  }

  .section-about-intro {
    margin-bottom: 1.16rem;
  }

  .section-about-intro .sec-title {
    margin-bottom: 0.4rem;
  }

  .section-about-intro .thumb-about {
    margin-bottom: 0.26rem;
  }

  .section-about-intro .desc-about {
    padding: 0 0.36rem;
    font-size: 0.22rem;
  }

  .section-about-intro .btn-group {
    margin: 0.3rem 0 0.52rem;
  }

  .section-about-intro .btn-group .btn-primary {
    margin: 0 0.08rem;
  }

  .section-about-intro .btn-group .btn-primary span {
    padding-left: 0.2rem;
    padding-right: 0.4rem;
  }

  .section-about-intro .list-room {
    display: block;
  }

  .section-about-intro .list-room li {
    margin-bottom: 0.2rem;
    width: auto;
  }

  .section-about-intro .list-room .thumb-about {
    margin-bottom: 0.2rem;
  }

  .section-about-intro .list-room .sec-title01 {
    margin-bottom: 0.06rem;
  }

  .section-about-equipment {
    padding-bottom: 0.68rem;
  }

  .section-about-equipment .sec-title {
    margin-bottom: 0.3rem;
  }

  .section-about-equipment .list-equipment {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .section-about-equipment .list-equipment li {
    margin-right: 0;
    margin-bottom: 0.32rem;
    width: 48.7%;
  }

  .section-about-equipment .list-equipment li:nth-child(3n) {
    margin-right: 0;
  }

  .section-about-equipment .list-equipment .thumb-about {
    margin-bottom: 0.2rem;
  }

  .section-about-equipment .list-equipment .desc-about {
    padding: 0 0.16rem 0 0.26rem;
  }
}

/* PAGE OPHTHAL
 * ----------------------------------------------- */
.section-lens {
  padding-bottom: 40px;
}

.section-lens .page-heading {
  padding-bottom: 45px;
}

.section-lens .info-clinic {
  margin: 29px 0 106px 58px;
}

.block-lens {
  padding: 29px 33px 29px 28px;
}

.block-lens .box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 50px;
}

.block-lens .box:first-child {
  margin-bottom: 70px;
}

.block-lens .box .th {
  width: 150px;
  height: auto;
}

.block-lens .box .td {
  width: 82%;
}

.block-lens .list-lens {
  margin-bottom: -10px;
}

.block-lens .list-lens li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  width: 420px;
  min-height: 80px;
  padding: 28px 26px 29px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  -moz-box-shadow: 1px 1px 0 #ccc;
  -webkit-box-shadow: 1px 1px 0 #ccc;
  box-shadow: 1px 1px 0 #ccc;
}

.block-lens .list-lens .pttl {
  line-height: 1.2;
}

.block-lens .list-lens .pttl:before {
  top: 8px;
}

.block-lens .list-lens .text {
  font-size: 14px;
}

.page-ophthal .block-cataract .w-lead .sec-title {
  text-align: left;
}

.page-ophthal .section-ophthal {
  padding-bottom: 13px;
}

.badge.full {
  padding-left: 0;
  padding-right: 0;
}

.section-ophthal-treatment {
  padding-bottom: 31px;
}

.section-ophthal-treatment .sec-title {
  margin-bottom: 27px;
}

.list-treatment {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 54px;
  letter-spacing: -0.02em;
}

.list-treatment .item {
  width: 523px;
  margin-bottom: 44px;
}

.list-treatment .item.full {
  width: 100%;
}

.list-treatment .item.right .head-treatment {
  padding: 0 17px;
}

.list-treatment .item .inner {
  padding: 17px 30px 1px 30px;
}

.list-treatment .item .inner p {
  text-align: justify;
}

.list-treatment .item .content-treatment {
  display: inline-block;
  width: 100%;
  height: 101px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #004C66;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 0 0 #d0d0d0;
  -moz-box-shadow: 2px 2px 0 0 #d0d0d0;
  box-shadow: 2px 2px 0 0 #d0d0d0;
  position: relative;
}

.list-treatment .item .content-treatment:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.list-treatment .item .content-treatment span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.7;
}

.list-treatment .item .content-treatment:after {
  position: absolute;
  content: "";
  width: 17px;
  height: 22px;
  top: -13px;
  left: 50%;
  margin-left: -22px;
  background: url(../img/common/icon_arrow04.png) no-repeat top center;
}

.list-treatment .item .head-treatment {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 0 28px;
  margin-bottom: 23px;
}

.list-treatment .item .head-treatment .text {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 28px 0 0 35px;
}

.list-treatment .item .head-treatment .text p {
  margin-bottom: 22px;
}

.list-treatment .item .head-treatment .text .big-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 19px;
}

.list-various-inspections {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.list-various-inspections li {
  background: #ECE8E8;
  margin-bottom: 14px;
  width: 420px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 20px 30px 0 26px;
  min-height: 100px;
}

.list-various-inspections li .ttl-various {
  font-weight: bold;
  color: #9F443F;
  font-size: 18px;
  width: 100%;
  padding-left: 15px;
  background: url(../img/common/icon_dot.png) no-repeat left 0 top 13px;
  margin-bottom: 1px;
}

.list-various-inspections li p {
  width: 100%;
  font-size: 14px;
  color: #382617;
}

.section-ophthal-cataract {
  padding-bottom: 64px;
}

.section-ophthal-cataract .sec-title {
  margin-bottom: 52px;
}

.section-ophthal-diseases {
  padding-bottom: 228px;
}

.section-ophthal-diseases .sec-title {
  margin-bottom: 44px;
}

.section-ophthal-diseases .list-tag {
  margin-right: -40px;
}

.section-ophthal-diseases .list-tag a {
  display: inline-block;
  font-size: 18px;
  color: #9F443F;
  font-weight: bold;
  text-decoration: underline;
  background: #fff url(../img/common/icon_dot.png) no-repeat left 28px top 27px;
  padding: 15px 10px 15px 41px;
  min-width: 150px;
  margin: 0 12px 16px 0;
  letter-spacing: -0.13em;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 0 0 #d0d0d0;
  -moz-box-shadow: 2px 2px 0 0 #d0d0d0;
  box-shadow: 2px 2px 0 0 #d0d0d0;
}

.section-ophthal-diseases .list-tag a.long {
  min-width: 230px;
}

.section-ophthal-diseases .list-tag a.medium {
  min-width: 180px;
}

@media (max-width: 750px) {
  .section-lens {
    padding-bottom: 0.4rem;
  }

  .section-lens .page-heading {
    padding-bottom: 0.45rem;
  }

  .section-lens .info-clinic {
    margin: 0.3rem 0 106px;
  }

  .block-lens {
    padding: 0.28rem;
  }

  .block-lens .box {
    display: block;
    margin-bottom: 0.5rem;
  }

  .block-lens .box:first-child {
    margin-bottom: 0.7rem;
  }

  .block-lens .box .th {
    margin-bottom: 0.1rem;
    padding: 0.2rem 0.1rem;
    width: 100%;
    height: auto;
  }

  .block-lens .box .th br {
    display: none;
  }

  .block-lens .box .td {
    width: 100%;
  }

  .block-lens .list-lens {
    margin-bottom: 0;
  }

  .block-lens .list-lens li {
    display: block;
    width: 49.3%;
    min-height: 0.8rem;
    padding: 0.24rem;
    margin-bottom: 0.1rem;
  }

  .block-lens .list-lens .pttl:before {
    top: 0.08rem;
  }

  .block-lens .list-lens .text {
    font-size: 0.22rem;
  }

  .page-ophthal .section-ophthal {
    padding-bottom: 0.2em;
  }

  .badge.full {
    padding-left: 0;
    padding-right: 0;
  }

  .section-ophthal-treatment {
    padding-bottom: 0.1rem;
  }

  .section-ophthal-treatment .sec-title {
    margin-bottom: 27px;
  }

  .list-treatment {
    margin-top: 0.2rem;
  }

  .list-treatment .item {
    width: 100%;
    margin-bottom: 0.4rem;
  }

  .list-treatment .item.full {
    width: 100%;
  }

  .list-treatment .item.full .head-treatment {
    -ms-flex-align: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }

  .list-treatment .item.right .head-treatment {
    padding: 0;
  }

  .list-treatment .item .inner {
    padding: 0.2rem 0 0 0;
  }

  .list-treatment .item .content-treatment {
    height: 1.2rem;
    font-size: 0.24rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    -webkit-box-shadow: 2px 2px 0 0 #d0d0d0;
    -moz-box-shadow: 2px 2px 0 0 #d0d0d0;
    box-shadow: 2px 2px 0 0 #d0d0d0;
  }

  .list-treatment .item .content-treatment:after {
    width: 0.17rem;
    height: 0.22rem;
    top: -0.14rem;
    margin-left: -0.22rem;
    -moz-background-size: auto 0.22rem;
    -o-background-size: auto 0.22rem;
    -webkit-background-size: auto 0.22rem;
    background-size: auto 0.22rem;
  }

  .list-treatment .item .head-treatment {
    padding: 0;
    margin-bottom: 0.3rem;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .list-treatment .item .head-treatment .text {
    padding: 0 0 0 0.3rem;
  }

  .list-treatment .item .head-treatment .text p {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }

  .list-treatment .item .head-treatment .text .big-text {
    font-size: 0.24rem;
    margin-bottom: 0;
  }

  .list-various-inspections {
    margin-top: 0.2rem;
  }

  .list-various-inspections li {
    margin-bottom: 0.15rem;
    padding: 0.2rem;
    min-height: 10px;
    width: 100%;
  }

  .list-various-inspections li .ttl-various {
    font-size: 0.24rem;
    padding-left: 0.2rem;
    background: url(../img/common/icon_dot.png) no-repeat left 0 top 0.16rem;
    -moz-background-size: auto 0.06rem;
    -o-background-size: auto 0.06rem;
    -webkit-background-size: auto 0.06rem;
    background-size: auto 0.06rem;
    margin-bottom: 0;
  }

  .list-various-inspections li p {
    font-size: 0.24rem;
    margin: 0 !important;
  }

  .section-ophthal-cataract {
    padding-bottom: 0.4rem;
  }

  .section-ophthal-cataract .sec-title {
    margin-bottom: 0.3rem;
  }

  .section-ophthal-cataract .wrapper-content {
    padding: 0 0.2rem;
  }

  .section-ophthal-diseases {
    padding-bottom: 1rem;
  }

  .section-ophthal-diseases .sec-title {
    margin-bottom: 0.4rem;
  }

  .section-ophthal-diseases .list-tag {
    margin-right: 0;
  }

  .section-ophthal-diseases .list-tag a {
    font-size: 0.24rem;
    background: #fff url(../img/common/icon_dot.png) no-repeat left 0.14rem top 0.25rem/0.1rem auto;
    padding: 0.1rem 0.2rem 0.1rem 0.4rem;
    min-width: 30px;
    margin: 0 0.14rem 0.14rem 0;
    letter-spacing: -0.13em;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    -webkit-box-shadow: 0.02rem 0.02rem 0 0 #d0d0d0;
    -moz-box-shadow: 0.02rem 0.02rem 0 0 #d0d0d0;
    box-shadow: 0.02rem 0.02rem 0 0 #d0d0d0;
  }

  .section-ophthal-diseases .list-tag a.long {
    min-width: 0.3rem;
  }

  .section-ophthal-diseases .list-tag a.medium {
    min-width: 0.3rem;
  }
}

/* PAGE DOCTOR
 * ----------------------------------------------- */
.section-doctor {
  padding-bottom: 132px;
}

.section-doctor .page-heading {
  padding-bottom: 37px;
}

.section-doctor .block-doctor .sec-title {
  margin-bottom: 23px;
}

.section-doctor .block-doctor .box-ct {
  padding-top: 51px;
}

.section-doctor .block-doctor .box-img {
  margin-right: 6px;
}

.section-doctor .block-doctor-profile {
  margin-top: 90px;
}

.section-doctor .block-doctor-profile .box-profile {
  float: left;
  width: 50%;
  font-size: 18px;
}

.section-doctor .block-doctor-profile .box-profile:nth-child(even) {
  padding-left: 67px;
}

.section-doctor .block-doctor-profile .inner {
  display: table;
  width: 100%;
}

.section-doctor .block-doctor-profile .inner+.inner {
  margin-top: 10px;
}

.section-doctor .block-doctor-profile .inner>* {
  display: table-cell;
  vertical-align: middle;
}

.section-doctor .block-doctor-profile .ttl {
  background: #ece8e8;
  border: 2px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-weight: bold;
  width: 100px;
  text-align: center;
}

.section-doctor .block-doctor-profile .desc {
  padding: 0 0 10px 26px;
}

.section-doctor .block-doctor-profile .list-profile li {
  display: table;
}

.section-doctor .block-doctor-profile .list-profile li>* {
  display: table-cell;
  vertical-align: middle;
}

.section-doctor .block-doctor-profile .list-profile .txt01 {
  width: 87px;
}

.section-doctor .block-doctor-profile .list-profile .space {
  padding-right: 18px;
}

@media (max-width: 750px) {
  .section-doctor {
    padding-bottom: 1.32rem;
  }

  .section-doctor .page-heading {
    padding-bottom: 0.4rem;
  }

  .section-doctor .block-doctor .sec-title {
    margin-bottom: 0.24rem;
  }

  .section-doctor .block-doctor .box-ct {
    margin-bottom: 0.4rem;
    padding-top: 0.5rem;
  }

  .section-doctor .block-doctor .box-img {
    margin-right: 0;
  }

  .section-doctor .block-doctor-profile {
    margin-top: 0.9rem;
  }

  .section-doctor .block-doctor-profile .box-profile {
    float: none;
    width: auto;
    font-size: 0.22rem;
  }

  .section-doctor .block-doctor-profile .box-profile:nth-child(even) {
    padding-left: 0;
  }

  .section-doctor .block-doctor-profile .inner {
    margin-top: 0.1rem;
  }

  .section-doctor .block-doctor-profile .inner+.inner {
    margin-top: 0.1rem;
  }

  .section-doctor .block-doctor-profile .ttl {
    border-width: 0.02rem;
    -moz-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -webkit-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    width: 1.4rem;
  }

  .section-doctor .block-doctor-profile .desc {
    padding: 0 0 0.1rem 0.26rem;
  }

  .section-doctor .block-doctor-profile .list-profile .txt01 {
    width: 1.1rem;
  }

  .section-doctor .block-doctor-profile .list-profile .space {
    padding-right: 0.18rem;
  }
}

/* PAGE CATARACT
 * ----------------------------------------------- */
.about-multifocal {
  padding-bottom: 132px;
}

.about-multifocal .block-main .sec-title {
  margin-bottom: 23px;
}

.about-multifocal .block-main {
  margin-bottom: 100px;
}

.compare-product .heading {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}

.compare-product .detail-ct {
  padding: 20px;
}

.compare-product .thumb {
  margin-bottom: 8px;
}

.compare-product .ttl {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.compare-product .row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
  min-height: 150px;
}

.compare-product .row:last-child {
  min-height: 0;
  margin-bottom: 0;
}

.compare-product .lead {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

.compare-product .lead:before {
  content: "";
  width: 7px;
  height: 7px;
  background: #000;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.compare-product .lead small {
  font-size: 0.8em;
}

.compare-product .price-list li {
  margin-bottom: 5px;
  line-height: 1.45;
}

.compare-product .price-list .label {
  font-weight: bold;
  text-align: center;
  background: #ece8e8;
  display: inline-block;
}

.compare-product .price-list .label.label-o {
  background-color: transparent;
  margin-bottom: 20px;
}

.compare-product .price-list .price {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  color: #a14440;
}

.ie .compare-product .price-list .price {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.compare-product .features li {
  padding: 5px 0;
}

.compare-product .features p {
  font-weight: bold;
}

.compare-product .features strong {
  display: inline-block;
  margin-left: 10px;
}

.compare-product .monofocal .heading {
  background: #382617;
}

.compare-product .monofocal .price-list .label {
  width: 152px;
}

.compare-product .multifocal .heading {
  background: #a14440;
}

.compare-product .multifocal .row:last-child {
  border-bottom: 0;
}

.compare-product .price-list .label {
  width: 200px;
}

@media (min-width: 751px) {
  .about-multifocal .desc-bl {
    font-size: 16px;
  }

  .compare-product .col {
    margin: 0 25px;
    width: 500px;
  }

  .compare-product .price-list li {
    padding-left: 15px;
  }

  .compare-product .monofocal .price-detail {
    padding: 0 25px 0 30px;
  }

  .compare-product .multifocal .price-detail {
    padding: 0 30px 0 25px;
  }
}

.d-list-about {
  background: #ece8e8;
  border: 2px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 50px;
  background-color: #fff;
  border-color: #ece8e8;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.d-list-about .dt,
.d-list-about .dd {
  padding-left: 15px;
  padding-right: 15px;
}

.d-list-about .dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.d-list-about .dd {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.d-list-about2 {
  background: #ece8e8;
  border: 3px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 50px;
  background-color: #fff;
  border-color: #ff0000;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.d-list-about2 .dt,
.d-list-about2 .dd {
  padding-left: 15px;
  padding-right: 15px;
}

.d-list-about2 .dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ff0000;
}

.d-list-about2 .dd {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.d-list-about2 ul li {
  color: #ff0000 !important;
}

.table-freeze {
  position: relative;
}

.table-freeze table {
  table-layout: fixed;
}

.table-freeze th,
.table-freeze td {
  border: 2px solid #f5f5f5;
  vertical-align: middle;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}

.table-freeze th {
  width: 150px;
  background: #a14440;
  color: #fff;
  text-align: left;
  padding-left: 16px;
}

.table-freeze td {
  text-align: center;
  width: 200px !important;
}

.table-body {
  display: block;
  margin-left: 158px;
}

.table-body table th {
  display: none;
  visibility: hidden;
  overflow: hidden;
}

.table-head {
  position: absolute;
  width: 158px;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 10;
}

.horizontal-only {
  height: auto;
  padding-bottom: 20px !important;
}

.jspHorizontalBar {
  width: auto;
  right: 0;
  margin-top: 4px;
}

.jspContainer {
  overflow: visible;
}

.jspTrack {
  background: #d6d6d6;
}

.jspDrag {
  background: #9f4441;
}

.jspArrow {
  position: relative;
  z-index: 999;
  width: 15px;
  background: #f5f5f5 !important;
}

.jspArrow:before {
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 0;
}

.jspArrow.jspArrowLeft:before {
  border-right: 10px solid #a14440;
  left: 0;
}

.jspArrow.jspArrowRight:before {
  border-left: 10px solid #a14440;
  right: 0;
}

.jspArrow.jspDisabled.jspArrowLeft:before {
  border-right-color: #e0e0e0;
}

.jspArrow.jspDisabled.jspArrowRight:before {
  border-left-color: #e0e0e0;
}

.comparison-chart {
  margin-bottom: 100px;
}

.comparison-chart .sec-title {
  margin-bottom: 80px;
}

.comparison-chart .table-freeze {
  margin-bottom: 20px;
}

.comparison-chart .table-freeze th,
.comparison-chart .table-freeze td {
  font-weight: bold;
  font-size: 1em;
}

.comparison-chart .table-freeze td span.jihi_span {
  display: inline-block;
  background: #666;
  color: #fff;
  font-size: 80%;
  padding: 5px 10px;
}

.comparison-chart .table-freeze td span.sentei_span {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  font-size: 80%;
  padding: 5px 10px;
}

.section-addon .sec-title {
  margin-bottom: 35px;
}

.section-addon .box-ct {
  padding-left: 30px;
}

.section-addon .compare-product {
  margin-top: 40px;
}

.section-addon .compare-product .row {
  min-height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 20px;
  padding-bottom: 15px;
  margin-bottom: 26px;
}

.addon-item {
  padding: 20px 0;
}

.addon-item .thumb {
  width: 150px;
}

.addon-item .info {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-left: 20px;
  padding-top: 10px;
}

.addon-item .ttl {
  margin-bottom: 6px;
}

.section-top-info.cataract {
  margin-top: 90px;
}

.section-top-info.cataract.cover {
  margin-top: 97px;
  padding-bottom: 150px;
}

.section-top-info.cataract.cover .heading {
  margin-bottom: -16px;
  border-top: 1px solid #382617;
  max-width: 1100px;
  width: 100%;
}

.section-top-info.cataract .heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 34px;
}

.section-top-info.cataract .heading span {
  display: inline-block;
  position: relative;
  top: -20px;
  padding: 0 34px;
  background: #f5f5f5;
}

.section-top-info.cataract .lbl-new {
  position: absolute;
  top: -20px;
  right: -2px;
}

/* faq */
.section-faq {
  margin-bottom: 136px;
}

.section-faq .content-quest-answer .box-inner {
  margin-bottom: 53px;
}

.section-faq .content-quest-answer .icon {
  width: 62px;
  height: 62px;
  font-size: 26px;
  font-weight: bold;
}

.section-faq .content-quest-answer .text {
  width: 90.5%;
  word-wrap: break-word;
}

.section-faq .content-quest-answer .ask {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  background: #ece8e8;
  position: relative;
  margin-bottom: 14px;
  padding-left: 35px;
}

.section-faq .content-quest-answer .ask .icon {
  display: inline-block;
  position: absolute;
  top: -19px;
  background: #a14440;
  color: #fff;
  text-align: center;
}

.section-faq .content-quest-answer .ask .icon:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.section-faq .content-quest-answer .ask .text {
  width: 100%;
  padding: 20px 20px 20px 88px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #a0443f;
}

.section-faq .content-quest-answer .answer {
  display: table;
  width: 100%;
  padding: 0 35px;
}

.section-faq .content-quest-answer .answer>* {
  display: table-cell;
  vertical-align: middle;
}

.section-faq .content-quest-answer .answer .icon {
  vertical-align: top;
  color: #ccc;
  padding-top: 6px;
}

.section-faq .content-quest-answer .answer .icon span {
  display: inline-block;
  background: #fff;
  width: 62px;
  height: 62px;
  text-align: center;
}

.section-faq .content-quest-answer .answer .icon span:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.box-video {
  width: 100%;
  max-width: 1018px;
  margin: 0 auto 79px;
}

.box-video iframe {
  width: 100%;
  height: 574px;
  display: block;
  border: 0;
}

.section-what-is {
  padding-bottom: 72px;
}

.section-what-is .sec-title {
  margin-bottom: 26px;
}

.content-surgery {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.content-surgery .text {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 1px 20px 0 3px;
}

.content-surgery .text p {
  margin-bottom: 26px;
  text-align: justify;
}

.content-surgery .image {
  padding-top: 6px;
  margin-right: -40px;
}

.section-features {
  padding-bottom: 93px;
}

.section-features .sec-title {
  margin-bottom: 41px;
}

.section-features img.img-features {
  display: block;
  margin: 0 auto 38px;
}

.box-features {
  padding-left: 53px;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 31px;
}

.box-features .left {
  width: 130px;
  padding-top: 8px;
}

.box-features .right {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding-left: 2px;
}

.box-features .right .ttl-features {
  font-size: 24px;
  color: #382617;
  font-weight: bold;
  margin-bottom: 2px;
}

.box-features .right p {
  font-size: 16px;
  color: #382617;
  letter-spacing: -0.02em;
}

.box-features .flag {
  float: left;
  width: 116px;
  position: relative;
  color: #fff;
  background-color: #a14440;
  padding: 7px 14px 7px 9px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-align: center;
}

.ie .box-features .flag {
  padding-top: 9px;
  padding-bottom: 5px;
}

.box-features .flag:before,
.box-features .flag:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  right: 0;
}

.box-features .flag:before {
  border-bottom: 13px solid #f5f5f5;
  bottom: 0;
}

.box-features .flag:after {
  border-top: 13px solid #f5f5f5;
  top: 0;
}

.section-flow {
  padding-bottom: 115px;
}

.section-flow .sec-title {
  margin-bottom: 39px;
}

.box-flow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.box-flow .sub-inner {
  padding-left: 96px;
}

.box-flow .sub-inner .content {
  border-left: 5px solid #a14440;
  padding: 52px 0 91px 130px;
}

.box-flow .sub-inner .content .block-inner+.block-inner {
  margin-top: 51px;
}

.box-flow .sub-inner .content .block-inner .list-col {
  margin: 9px -3px 0 -5px;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.box-flow .sub-inner .content .block-inner .list-col .w-lead .w-button {
  bottom: -28px;
  right: 17px;
}

.box-flow .sub-inner .content .block-inner .list-col .w-lead .sec-title {
  text-align: left;
  padding-left: 40px;
}

.box-flow .sub-inner .content .ttl-inner {
  font-weight: bold;
  color: #9F443F;
  font-size: 18px;
  width: 100%;
  padding-left: 23px;
  background: url(../img/common/icon_dot.png) no-repeat left 3px top 12px;
  margin-bottom: 6px;
}

.ie .box-flow .sub-inner .content .ttl-inner {
  background-position: left 3px top 8px;
}

.box-flow .sub-inner .content p {
  letter-spacing: -0.02em;
}

.box-flow .sub-inner .content .flow-inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 8px;
}

.box-flow .sub-inner .content .flow-inner .item-flow {
  width: 164px;
  margin-right: 13px;
  position: relative;
}

.box-flow .sub-inner .content .flow-inner .item-flow.last:after {
  display: none;
}

.box-flow .sub-inner .content .flow-inner .item-flow:after {
  position: absolute;
  width: 21px;
  height: 48px;
  content: "";
  right: -20px;
  top: 31px;
  z-index: 10;
  background: url(../img/cataract/icon_arrow.png) no-repeat right center;
}

.box-flow .sub-inner .content .flow-inner .item-flow img {
  display: block;
  margin-bottom: 12px;
}

.box-flow .sub-inner .content .flow-inner .item-flow p {
  font-size: 14px;
  padding: 0 3px;
}

.box-flow .item {
  margin-bottom: 18px;
  background: #ece8e8;
  border: 2px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
}

.box-flow .item.has-child {
  margin-bottom: 0;
}

.box-flow .item:after {
  position: absolute;
  width: 1px;
  top: 25px;
  bottom: 25px;
  content: "";
  background: #c8c1be;
  left: 197px;
}

.box-flow .item .left {
  text-align: center;
  width: 198px;
  font-size: 18px;
  font-weight: bold;
  padding-left: 5px;
}

.box-flow .item .right {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 27px 0 28px 34px;
  letter-spacing: -0.02em;
}

.section-cataract .page-heading {
  padding-bottom: 44px;
}

.block-progress {
  margin-top: 50px;
}

.card-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  border: 2px solid #ebebeb;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 21px;
  padding: 27px 4px 26px;
}

.card-box .card-heading {
  width: 194px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.card-box .card-body {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  padding: 0 16px 0 36px;
  border-left: 1px solid #d8d8d8;
}

.dl-list dd {
  letter-spacing: -0.05em;
}

.dl-list dd+dt {
  margin-top: 25px;
}

.list-group {
  margin-top: 18px;
}

.list-group.fill-two {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 32px;
}

.list-group.fill-two .list-group-item {
  margin-bottom: 28px;
  width: 480px;
}

.list-group.fill-two .desc {
  padding-left: 32px;
}

.list-group .desc {
  padding: 11px 44px 13px 54px;
  letter-spacing: -0.05em;
}

.list-group .desc p+p {
  margin-top: 29px;
}

.list-group .list-group-item {
  margin-bottom: 18px;
}

.block-symptoms {
  margin-top: 87px;
}

.block-symptoms .pttl {
  margin-left: 24px;
}

.block-complication {
  margin-top: 86px;
}

.block-complication .pttl {
  margin-left: 22px;
}

.block-complication .desc-complication {
  padding: 3px 37px;
}

@media (min-width: 751px) {
  .section .upper .thumb {
    width: 260px;
  }

  .section-faq .page-heading {
    padding-bottom: 56px;
  }

  .section-faq .content-quest-answer {
    width: 980px;
    margin: 0 auto;
  }
}

@media (max-width: 750px) {
  .section-cataract .page-heading {
    padding-bottom: 0.44rem;
  }

  .box-video {
    max-width: inherit;
    margin: 0 auto 0.8rem;
  }

  .box-video iframe {
    height: 5.74rem;
  }

  .section-what-is {
    padding-bottom: 0.72rem;
  }

  .section-what-is .sec-title {
    margin-bottom: 0.26rem;
  }

  .content-surgery {
    display: block;
  }

  .content-surgery .text {
    padding: 0;
  }

  .content-surgery .text p {
    margin-bottom: 0.26rem;
  }

  .content-surgery .image {
    padding-top: 0.1rem;
    margin-right: 0;
  }

  .section-features {
    padding-bottom: 0.94rem;
  }

  .section-features .sec-title {
    margin-bottom: 0.4rem;
  }

  .section-features img.img-features {
    margin: 0 auto 0.38rem;
  }

  .box-features {
    padding-left: 0;
    margin-bottom: 0.3rem;
  }

  .box-features .left {
    width: 2.1rem;
    padding-top: 0.08rem;
  }

  .box-features .right {
    padding-left: 0.1rem;
  }

  .box-features .right .ttl-features {
    font-size: 0.24rem;
  }

  .box-features .right p {
    font-size: 0.22rem;
  }

  .box-features .flag {
    width: 2rem;
    padding: 0.1rem 0.14rem 0.1rem 0.01rem;
    font-size: 0.2rem;
  }

  .box-features .flag:before,
  .box-features .flag:after {
    border-left-width: 0.1rem;
  }

  .box-features .flag:before {
    border-bottom-width: 0.2rem;
  }

  .box-features .flag:after {
    border-top-width: 0.2rem;
  }

  .section-flow {
    padding-bottom: 1.14rem;
  }

  .section-flow .sec-title {
    margin-bottom: 0.4rem;
  }

  .box-flow {
    max-width: inherit;
  }

  .box-flow .sub-inner {
    padding-left: 0.96rem;
  }

  .box-flow .sub-inner .content {
    border-left-width: 0.04rem;
    padding: 0.52rem 0 0.9rem 1.2rem;
  }

  .box-flow .sub-inner .content .block-inner+.block-inner {
    margin-top: 0.5rem;
  }

  .box-flow .sub-inner .content .block-inner .list-col {
    margin: 0.3rem 0 0;
  }

  .box-flow .sub-inner .content .block-inner .list-col .col-item {
    margin-bottom: 0.5rem;
  }

  .box-flow .sub-inner .content .block-inner .list-col .w-lead .w-button {
    bottom: -0.28rem;
    right: 0.18rem;
  }

  .box-flow .sub-inner .content .block-inner .list-col .w-lead .sec-title {
    padding-left: 0.4rem;
  }

  .box-flow .sub-inner .content .ttl-inner {
    font-size: 0.24rem;
    padding-left: 0.24rem;
    background: url(../img/common/icon_dot.png) no-repeat left 0.04rem top 0.12rem;
    -moz-background-size: auto 0.06rem;
    -o-background-size: auto 0.06rem;
    -webkit-background-size: auto 0.06rem;
    background-size: auto 0.06rem;
    margin-bottom: 0.06rem;
  }

  .box-flow .sub-inner .content .flow-inner {
    display: block;
    margin-top: 0.08rem;
  }

  .box-flow .sub-inner .content .flow-inner .item-flow {
    width: 100%;
    margin-bottom: 0.1rem;
    margin-right: 0;
    padding-bottom: 0.5rem;
  }

  .box-flow .sub-inner .content .flow-inner .item-flow:after {
    width: 0.22rem;
    height: 0.48rem;
    right: 50%;
    top: auto;
    bottom: 0;
    margin-right: -0.22rem;
    -moz-background-size: auto 0.48rem;
    -o-background-size: auto 0.48rem;
    -webkit-background-size: auto 0.48rem;
    background-size: auto 0.48rem;
    background-position: 100% 50%;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .box-flow .sub-inner .content .flow-inner .item-flow img {
    margin-bottom: 0.12rem;
  }

  .box-flow .sub-inner .content .flow-inner .item-flow p {
    font-size: 0.22rem;
  }

  .box-flow .item {
    margin-bottom: 0.2rem;
    padding: 0.3rem;
    display: block;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    border-width: 0.02rem;
  }

  .box-flow .item:after {
    background: none;
  }

  .box-flow .item .left {
    display: block;
    border-bottom: 1px solid #c8c1be;
    width: auto;
    font-size: 0.24rem;
    padding: 0 0.1rem 0.2rem;
  }

  .box-flow .item .right {
    padding: 0.3rem 0 0;
  }

  .block-progress {
    margin-top: 0.5rem;
  }

  .card-box {
    display: block;
    border-width: 0.02rem;
    -moz-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -webkit-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    margin-bottom: 0.2rem;
    padding: 0.3rem 0.3rem 0.26rem;
  }

  .card-box .card-heading {
    width: 100%;
    font-size: 0.24rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #d8d8d8;
  }

  .card-box .card-body {
    padding: 0.3rem 0 0;
    border-left: none;
  }

  .dl-list dd+dt {
    margin-top: 0.24rem;
  }

  .list-group {
    margin-top: 0.2rem;
  }

  .list-group.fill-two {
    margin-top: 0.32rem;
  }

  .list-group.fill-two .list-group-item {
    margin-bottom: 0.28rem;
    width: 48.7%;
  }

  .list-group.fill-two .desc {
    padding-left: 0.32rem;
  }

  .list-group .desc {
    padding: 0.1rem 0.44rem 0.14rem;
  }

  .list-group .desc p+p {
    margin-top: 0.3rem;
  }

  .list-group .list-group-item {
    margin-bottom: 0.18rem;
  }

  .block-symptoms {
    margin-top: 0.88rem;
  }

  .block-symptoms .pttl {
    margin-left: 0.24rem;
  }

  .block-complication {
    margin-top: 0.86rem;
  }

  .block-complication .pttl {
    margin-left: 0.24rem;
  }

  .block-complication .desc-complication {
    padding: 3px 0.36rem;
  }

  .section-faq {
    margin-bottom: 1.36rem;
  }

  .section-faq .content-quest-answer .box-inner {
    margin-bottom: 0.54rem;
  }

  .section-faq .content-quest-answer .icon {
    width: 0.64rem;
    height: 0.64rem;
    font-size: 0.26rem;
  }

  .section-faq .content-quest-answer .text {
    width: 86.5%;
    font-size: 0.22rem;
  }

  .section-faq .content-quest-answer .ask {
    margin-bottom: 0.14rem;
    padding-left: 0.36rem;
  }

  .section-faq .content-quest-answer .ask .icon {
    top: -0.2rem;
  }

  .section-faq .content-quest-answer .ask .text {
    padding: 0.2rem 0.2rem 0.2rem 0.88rem;
    font-size: 0.22rem;
  }

  .section-faq .content-quest-answer .answer {
    padding: 0 0.36rem;
  }

  .section-faq .content-quest-answer .answer .icon {
    padding-top: 0.06rem;
  }

  .section-faq .content-quest-answer .answer .icon span {
    width: 0.64rem;
    height: 0.64rem;
  }

  .about-multifocal {
    padding-bottom: 1.2rem;
  }

  .about-multifocal .block-main {
    margin-bottom: 1rem;
  }

  .compare-product .detail-ct {
    padding: 10px;
  }

  .compare-product .heading {
    font-size: 0.4rem;
    padding: 0.2rem 0;
  }

  .compare-product .ttl {
    font-size: 0.28rem;
  }

  .compare-product .lead {
    font-size: 0.28rem;
  }

  .compare-product .price-list li {
    -webkit-align-items: center;
    align-items: center;
  }

  .compare-product .price-list .label {
    padding: 0.08rem 0;
  }

  .compare-product .price-list .price {
    font-size: 0.24rem;
  }

  .compare-product .row {
    min-height: 0;
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
    border-bottom: 0;
  }

  .compare-product .monofocal .price-list .label {
    width: 2rem;
  }

  .compare-product .multifocal .price-list .label {
    width: 3rem;
  }

  .d-list-about {
    padding: 0.4rem 0.3rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
  }

  .d-list-about .dt {
    font-size: 0.26rem;
  }

  .d-list-about .dd {
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .comparison-chart .sec-title {
    margin-bottom: 0.8rem;
  }

  .comparison-chart .table-freeze th,
  .comparison-chart .table-freeze td {
    border-width: 1px;
    font-size: 0.22rem;
  }

  .table-head {
    width: 2.1rem;
  }

  .table-body {
    margin-left: 2.1rem;
  }

  .table-freeze th {
    padding-left: 10px;
    width: 2.1rem;
  }

  .table-freeze td {
    width: 2.5rem;
  }

  .section-addon .box-ct {
    padding-left: 0;
    margin-top: 0.2rem;
  }

  .section-addon .thumb {
    -webkit-flex: 0 0 30%;
    flex: 0 0 30%;
  }

  .comparison-chart {
    margin-bottom: 1rem;
  }

  .section-top-info.cataract {
    margin-top: 1rem;
  }

  .section-top-info.cataract.cover {
    margin-top: 0.96rem;
    padding-bottom: 1.5rem;
  }

  .section-top-info.cataract.cover .heading {
    margin-bottom: -0.16rem;
  }

  .section-top-info.cataract .heading {
    font-size: 0.28rem;
    margin-bottom: 0.4rem;
  }

  .section-top-info.cataract .heading span {
    top: -0.26rem;
    padding: 0 0.34rem;
  }

  .section-top-info.cataract .lbl-new {
    width: 1.12rem;
    height: 1.12rem;
  }
}

/* PAGE RECRUIT
 * ----------------------------------------------- */
.section-recruit .page-heading {
  padding-bottom: 62px;
}

.section-recruit-resume {
  margin-bottom: 112px;
}

.section-recruit-resume .sec-title {
  margin-bottom: 32px;
}

.section-recruit-resume .desc-bl {
  letter-spacing: -0.02em;
}

.section-recruit-resume .txt-map {
  margin: 38px 0;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 26px;
}

.ie .section-recruit-resume .txt-map {
  padding-top: 27px;
}

.section-recruit-requirement {
  padding-bottom: 94px;
}

.section-recruit-requirement .sec-title {
  margin-bottom: 39px;
}

.section-recruit-requirement .ul-list .inner {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}

.section-recruit-requirement .ul-list .inner>* {
  display: table-cell;
  vertical-align: middle;
}

.section-recruit-requirement .ul-list .pull-left {
  width: 150px;
  background: #ece8e8;
  border: 2px solid #fff;
  -moz-box-shadow: 2px 2px 0 #d0d0d0;
  -webkit-box-shadow: 2px 2px 0 #d0d0d0;
  box-shadow: 2px 2px 0 #d0d0d0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  line-height: 1.2;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.section-recruit-requirement .ul-list .pull-right {
  padding: 12px 58px 7px 32px;
}

.section-recruit-requirement .list-job li:not(:last-child) {
  margin-bottom: 22px;
}

.section-recruit-requirement .list-job .heading {
  *zoom: 1;
  margin-bottom: 6px;
}

.section-recruit-requirement .list-job .heading:after {
  content: "";
  display: table;
  clear: both;
}

.section-recruit-requirement .list-job .heading .flag {
  float: left;
  width: 120px;
}

.section-recruit-requirement .list-job .heading .sec-title02 {
  padding: 3px 0 0 132px;
}

.section-recruit-requirement .list-hour li:not(:last-child) {
  margin-bottom: 14px;
}

@media (min-width: 751px) {
  .section-recruit-requirement .ul-list>li {
    width: 50%;
  }

  .section-recruit-requirement .ul-list .pull-right {
    width: 394px;
  }

  .section-recruit-requirement .ul-list .pull-right.pb {
    padding-bottom: 12px;
  }

  .section-recruit-requirement .list-job {
    padding-top: 2px;
  }

  .section-recruit-requirement .list-job li.space {
    margin-bottom: 13px;
  }

  .section-recruit-requirement .list-job li.space .heading {
    margin-bottom: 0;
  }

  .section-recruit-requirement .list-hour {
    padding-top: 6px;
  }
}

@media (max-width: 750px) {
  .section-recruit .page-heading {
    padding-bottom: 0.62rem;
  }

  .section-recruit-resume {
    margin-bottom: 1.12rem;
  }

  .section-recruit-resume .sec-title {
    margin-bottom: 0.32rem;
  }

  .section-recruit-resume .txt-map {
    margin: 0.38rem 0;
    padding-top: 0.24rem;
    padding-bottom: 0.24rem;
    font-size: 0.26rem;
  }

  .section-recruit-requirement {
    padding-bottom: 0.94rem;
  }

  .section-recruit-requirement .sec-title {
    margin-bottom: 0.4rem;
  }

  .section-recruit-requirement .desc {
    font-size: 0.22rem;
  }

  .section-recruit-requirement .ul-list .inner {
    margin-bottom: 0.1rem;
  }

  .section-recruit-requirement .ul-list .pull-left {
    width: 1.5rem;
    border-width: 0.02rem;
    -moz-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -webkit-box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    box-shadow: 0.02rem 0.02rem 0 #d0d0d0;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    padding: 0.1rem;
    font-size: 0.22rem;
  }

  .section-recruit-requirement .ul-list .pull-right {
    width: 3.94rem;
    padding: 0.12rem 0.58rem 0.12rem 0.32rem;
  }

  .section-recruit-requirement .list-job li:not(:last-child) {
    margin-bottom: 0.22rem;
  }

  .section-recruit-requirement .list-job .heading {
    margin-bottom: 0.06rem;
  }

  .section-recruit-requirement .list-job .heading .flag {
    width: 1.2rem;
  }

  .section-recruit-requirement .list-job .heading .sec-title02 {
    padding: 0.04rem 0 0 1.32rem;
  }

  .section-recruit-requirement .list-hour li:not(:last-child) {
    margin-bottom: 0.14rem;
  }
}

/* PAGE ACCESS
 * ----------------------------------------------- */
.section-access {
  padding-bottom: 110px;
}

.section-access .page-heading {
  padding-bottom: 40px;
}

.section-access .block-access-method {
  margin-top: 158px;
}

.section-access .block-access-method .list-transport {
  margin-top: 32px;
}

.section-access .block-access-method .list-transport .box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  padding-left: 49px;
  width: 50%;
}

.section-access .block-access-method .list-transport .box.full {
  -ms-flex-align: unset;
  -webkit-align-items: unset;
  align-items: unset;
  width: 100%;
}

.section-access .block-access-method .list-transport .box.full .list-text {
  margin-top: 8px;
  margin-left: 45px;
  width: 854px;
}

.section-access .block-access-method .list-transport .list-text {
  margin-left: 46px;
  width: 305px;
}

.section-access .google-map {
  margin-top: 71px;
  border: 3px solid #a14440;
  height: 436px;
}

.section-access .google-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 750px) {
  .section-access {
    padding-bottom: 1.1rem;
  }

  .section-access .page-heading {
    padding-bottom: 0.4rem;
  }

  .section-access .block-access-method {
    margin-top: 1.58rem;
  }

  .section-access .block-access-method .list-transport {
    margin-top: 0.32rem;
  }

  .section-access .block-access-method .list-transport .box {
    margin-bottom: 0.2rem;
    padding-left: 0.46rem;
    width: auto;
  }

  .section-access .block-access-method .list-transport .box.full .list-text {
    margin-top: 0.08rem;
    margin-left: 0.46rem;
    width: 68%;
  }

  .section-access .block-access-method .list-transport .list-text {
    margin-left: 0.46rem;
    width: 68%;
    text-align: justify;
  }

  .section-access .google-map {
    margin-top: 0.7rem;
    border-width: 0.04rem;
    height: 4.36rem;
  }
}



/*20211108追加 */
@media (min-width: 751px) {
  .cataractbnr {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width: 750px) {
  .cataractbnr {
    margin-bottom: 0.5rem;
  }

  .block-cataract .w-lead .w-button.cataractlist {
    text-align: right;
    bottom: -1rem;
  }

  .block-cataract .w-lead .w-button.cataractlist a {
    margin-bottom: 0.1rem;
  }

  .desc.cataract {
    margin-top: 1rem;
  }
}

/*20220302追加 */
@media (min-width: 751px) {
  .sp_br {
    display: none;
  }

  div.ortho img.sp_br {
    display: none;
  }

  .navigation .new2022 .ul-menu .menu-item:before {
    right: -25px;
  }
}

@media (max-width: 750px) {
  .pc_br {
    display: none;
  }

  div.ortho img.pc_br {
    display: none;
  }
}

div.ortho {
  text-align: center;
}

div.ortho .sec-title {
  left: 2.5em;
}

div.ortho p.desc {
  text-align: left;
  padding: 1em 3em;
}



/*20240620追加*/
.dx_info {
  background-color: #F5F5F5;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 2em 3em 1em;
  margin: 40px auto;
  margin: 120px auto 40px auto;
}

.dx_info p strong {
  font-weight: bold;
  font-size: 80%;
  color: #a14440;
}

.dx_info ul {
  list-style: none;
}

.dx_info ul li {
  margin-left: 1.5em;
  text-indent: -1.5em;
  font-size: 70%;
}

.dx_info ul li:before {
  content: "●";
  color: #c8c1be;
  margin-right: 0.5em;
}

.dx_info__inner {
  margin-bottom: 1em;
}

.dx_info__txt {
  font-size: 70%;
}

.dx_info__txt--caution {
  font-size: 60%;
}

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