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

/* 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;
  line-height: 1;
  font: inherit;
}

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

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
}

/* GENERAL
 * ----------------------------------------------- */
body {
  color: #736653;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  background: #FDFDFA;
}

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

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #736653;
  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;
}

.container {
  min-width: 1300px;
}

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

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

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

  .sm {
    display: block !important;
  }

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

  html {
    font-size: 15.625vw;
  }

  body {
    font-size: 0.2rem;
  }

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

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON FONT
 * ----------------------------------------------- */
.mplus {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}

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

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

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

.radius {
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.rad {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.link-tel {
  cursor: inherit;
}

@media (max-width: 767px) {
  img {
    display: block;
    width: 100%;
  }

  .radius {
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
  }

  .rad {
    -moz-border-radius: 0.3rem;
    -webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
  }
}
.color02 {
  color: #EF91AE !important;
}

.color03 {
  color: #F2A359 !important;
}

.color04 {
  color: #85CCF2 !important;
}

.color05 {
  color: #5DAD30 !important;
}

.color06 {
  color: #F09CB4 !important;
}

.color07 {
  color: #F7B52C !important;
}

.color08 {
  color: #CEDA00 !important;
}

.color09 {
  color: #5DAF30 !important;
}

.color10 {
  color: #ACDDF7 !important;
}

.color11 {
  color: #54D641 !important;
}

.bg02 {
  background: #EF91AE;
}

.bg03 {
  background: #F2A359;
}

.bg04 {
  background: #85CCF2;
}

.bg05 {
  background: #5DAD30;
}

.bg06 {
  background: #F09CB4;
}

.bg07 {
  background: #F7B52C;
}

.bg08 {
  background: #CEDA00;
}

.bg09 {
  background: #5DAF30;
}

.bg10 {
  background: #ACDDF7;
}

.bg11 {
  background: #54D641;
}

/* COMMON WRAP
 * ----------------------------------------------- */
.inner {
  margin: 0 auto;
  width: 1100px;
}

.block {
  margin: 0 auto;
  width: 1000px;
}

.wrap {
  margin: 0 auto;
  width: 970px;
}

@media (max-width: 767px) {
  .inner,
  .wrap,
  .block {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
/* COMMON TITLES
 * ----------------------------------------------- */
.title-sec {
  position: relative;
  padding-top: 52px;
  overflow: hidden;
  text-align: center;
}
.title-sec .txt01 {
  position: relative;
  background: #FDFDFA;
  display: inline-block;
  color: #5DAD30;
  font-size: 30px;
  padding: 0 28px;
}
.title-sec .txt01:after {
  position: absolute;
  content: "";
  width: 2000px;
  height: 2px;
  border-bottom: 2px dotted #e5e6e1;
  left: -1000px;
  top: 50%;
  z-index: -1;
}
.title-sec .txt02 {
  display: block;
  letter-spacing: 0.34em;
  font-size: 14px;
  margin-top: 5px;
}
.title-sec.second {
  padding-top: 0;
}
.title-sec + .txt-sub {
  margin-top: 18px;
  text-align: center;
  padding-right: 50px;
}

.title-skin {
  text-align: center;
  font-size: 24px;
}

.title-box {
  text-align: center;
  font-size: 30px;
}

.title-room {
  text-align: center;
  color: #62BCEC;
  font-size: 30px;
}

.title-stroke {
  text-align: center;
  color: #F7B52C;
  font-size: 30px;
}

.txt-disease {
  line-height: 1.5;
  font-size: 21px;
}
.txt-disease.child {
  display: block;
  padding: 28px 60px 28px 60px;
}

.txt-disease-symptom {
  line-height: 1.5;
  font-size: 16px !important;
}

.txt-sub {
  line-height: 1.5;
  font-size: 16px;
}
.txt-sub span {
  display: inline-block;
  text-align: left;
}

.txt-skin {
  line-height: 1.5;
  font-size: 18px;
}

.txt-doctor {
  line-height: 1.65;
  font-size: 16px;
}

@media (max-width: 767px) {
  .title-sec {
    padding-top: 0.64rem;
  }
  .title-sec .txt01 {
    font-size: 0.36rem;
    padding: 0 0.3rem;
  }
  .title-sec .txt01:after {
    border-bottom-width: 0.02rem;
  }
  .title-sec .txt02 {
    font-size: 0.2rem;
    margin-top: 0.04rem;
  }
  .title-sec + .txt-sub {
    margin-top: 0.2rem;
    text-align: center;
    padding-right: 0;
  }
  .title-sec.second {
    padding-top: 0.3rem;
  }

  .title-box,
  .title-room,
  .title-stroke {
    font-size: 0.32rem;
  }

  .txt-disease {
    font-size: 0.26rem;
  }
  .txt-disease.child {
    padding: 0.28rem 0.24rem 0.28rem 0.24rem;
  }

  .txt-sub {
    font-size: 0.24rem;
  }

  .title-skin {
    font-size: 0.28rem;
  }

  .txt-skin {
    line-height: 1.5;
    font-size: 0.26rem;
  }

  .txt-doctor {
    font-size: 0.26rem;
  }
}
/* COMMON BUTTONS
 * ----------------------------------------------- */
.link-info {
  text-decoration: underline;
  -moz-transition: all 0.26s ease;
  -o-transition: all 0.26s ease;
  -webkit-transition: all 0.26s ease;
  transition: all 0.26s ease;
  line-height: 1.5;
  font-size: 18px;
  color: #5DAD30;
  text-align: center;
}
.link-info:hover {
  text-decoration: none;
}

.link-more {
  position: relative;
  display: block;
  font-weight: bold;
  text-align: center;
  background: #fff;
  -moz-transition: all 0.26s ease;
  -o-transition: all 0.26s ease;
  -webkit-transition: all 0.26s ease;
  transition: all 0.26s ease;
  border: 2px solid #736653;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  font-size: 16px;
  width: 150px;
  padding: 7px 0;
}
.link-more:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 8px solid #736653;
  border-left: 8px solid transparent;
  bottom: 5px;
  right: 4px;
}
.link-more:hover {
  border-color: #EF91AE;
  color: #EF91AE;
}
.link-more:hover:after {
  border-bottom-color: #EF91AE;
}
.link-more.second {
  width: 300px;
  font-size: 21px;
  border-width: 3px;
  padding: 16px 0;
}
.link-more.second:after {
  border-bottom-width: 18px;
  border-left-width: 18px;
  bottom: 6px;
  right: 8px;
}

.list-info {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 36px;
}
.list-info li {
  position: relative;
  display: table;
  background: #F9F9F7;
  -moz-border-radius: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
  border-bottom: 5px solid #5DAD30;
  width: 350px;
  margin: 0 12px;
}
.list-info .txt-date {
  position: absolute;
  left: 37px;
  top: -8px;
  display: block;
  line-height: 1;
  text-align: center;
  background: #5DAD30;
  color: #fff;
  padding: 6px 0;
  width: 138px;
  font-size: 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  letter-spacing: 0.1em;
}
.list-info .link-info {
  display: table;
  width: 100%;
  padding: 30px 42px;
}
.list-info .link-more {
  position: absolute;
  bottom: -24px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* 重要なお知らせ追加　2020.04.20 */

.import_info{
  width:100%;
  margin:30px auto 0;
  background:#fc6670;
  border-radius: 10px;
  display: flex;
  border:3px solid #fc6670;
  -moz-box-shadow: 4px 4px 0 #d7d8d3;
  -webkit-box-shadow: 4px 4px 0 #d7d8d3;
  box-shadow: 4px 4px 0 #d7d8d3;
}
.import_info dt{
  width:25%;
  font-size:22px;
  color:#fff;
  text-align: center;
  position:relative;
  min-height:90px;
}

.import_info dt span{
  display: block;
  width:100%;
  height:32px;
  position:absolute;
  top:-20px;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
}
.import_info dt img{
  display: block;
  position:absolute;
  width:128px;
  height:26px;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto auto 15px;
}
.import_info dt img.active{
 transition: 0.5s;
 opacity: 0;
}
.import_info dt a:hover .active{
 opacity: 1;
}


.import_info dd{
  width:75%;
  background:#fff;
  border-radius: 0 10px 10px 0;
  display: block;
}

.import_info dd ul{
  padding:20px 0;
}

.import_info dd ul li{
  padding:5px 20px;
  font-size:16px;
}
.import_info dd ul li span{
  display: inline-block;
  background:#fc6670;
  padding:3px 10px;
  margin-right:20px;
  color:#fff;
  border-radius: 5px;
  letter-spacing:0.1em;
}

.import_info dd ul li a {
  text-decoration: underline;
  -moz-transition: all 0.26s ease;
  -o-transition: all 0.26s ease;
  -webkit-transition: all 0.26s ease;
  transition: all 0.26s ease;
  line-height: 1.5;
  font-size: 18px;
  color: #fc6670;
  text-align: center;
}
.import_info dd ul li a:hover {
  text-decoration: none;
}
.all_info_btn{
  min-height:50px;
  text-align: center;
  margin:50px 0 20px;
  position:relative;
}
.all_info_btn img{
  display: block;
  max-width:298px;
  margin:0 auto!important;
  position:absolute;
  bottom:0;
  right:0;
  left:0;
  padding:0!important;
}
.all_info_btn img.active{
 transition: 0.5s;
 opacity: 0;
}
.all_info_btn a:hover .active{
 opacity: 1;
}




@media (max-width: 767px) {
  .link-info {
    font-size: 0.28rem;
  }

  .link-more {
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    border-width: 0.02rem;
    font-size: 0.24rem;
    width: 2.4rem;
    padding: 0.08rem 0;
  }
  .link-more:after {
    border-bottom-width: 0.1rem;
    border-left-width: 0.1rem;
    bottom: 0.05rem;
    right: 0.05rem;
  }
  .link-more.second {
    width: auto;
    font-size: 0.26rem;
    border-width: 0.03rem;
    padding: 0.16rem 0;
  }
  .link-more.second:after {
    border-bottom-width: 0.18rem;
    border-left-width: 0.18rem;
    bottom: 0.08rem;
    right: 0.08rem;
  }

  .list-info {
    display: block;
    margin-top: 0.5rem;
  }
  .list-info li {
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
    border-bottom-width: 0.06rem;
    width: 100%;
    margin: 0.7rem 0;
  }
  .list-info .txt-date {
    left: 0.2rem;
    top: -0.08rem;
    padding: 0.08rem 0;
    width: 2rem;
    font-size: 0.24rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
  }
  .list-info .link-info {
    padding: 0.5rem 0.4rem;
  }
  .list-info .link-more {
    bottom: -0.2rem;
  }

  .import_info{
    width:100%;
    margin:10px auto 0;
    background:#fc6670;
    display: block;
    border:3px solid #fc6670;
    -moz-box-shadow: 4px 4px 0 #d7d8d3;
    -webkit-box-shadow: 4px 4px 0 #d7d8d3;
    box-shadow: 4px 4px 0 #d7d8d3;
  }
  .import_info dt{
    width:100%;
    font-size:18px;
    min-height:48px;
  }
  .import_info dd{
    width:100%;
    border-radius: 0 0 10px 10px;
    display: block;
    font-size:0.2rem;
  }
  .import_info dd{
    font-size:16px;
  }

  .import_info dd ul{
    padding:10px 0;
  }
  .import_info dd ul li a{
    font-size:16px!important;
  }
  .import_info dd ul li span{
    width:100px;
    display: block;
    background:#fc6670;
    padding:2px 0 0!important;
    margin-bottom:5px;
    text-align: center;
    font-size:90%;
  }
  .import_info dt span{
    display: block;
    width:50%;
    height:32px;
    position:absolute;
    top:10px;
    bottom:auto;
    right:auto;
    left:20px;
    margin:auto 0 5px;
    text-align: left;
  }
  .import_info dt img{
    display: block;
    position:absolute;
    width:100px;
    height:23px;
    top:10px;
    bottom:auto;
    right:10px;
    left:auto;
    margin:auto 0 5px;
  }

  .all_info_btn img{
    max-width:250px;
  }

}
/* COMMON BLOCK
 * ----------------------------------------------- */
.bg-load {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
}

.list-medical li.dot {
  margin-right: 16px;
}
.list-medical li.dot:before {
  content: "●";
  color: #EF91AE;
}
.list-medical .color02 {
  padding-left: 26px;
}
.list-medical.dot02 li.dot:before {
  color: #54D641;
}

.list-intro {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 54px;
}
.list-intro a {
  margin: 0 16px;
}

.block-base {
  background-color: #fff;
  border: 2px solid #EF91AE;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}
.block-base.base02 {
  border-color: #CDB03F !important;
}
.block-base.base03 {
  border-color: #54D641 !important;
}
.block-base.base04 {
  border-color: #51B7D0 !important;
}

.block-disease {
  overflow: hidden;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background-color: #F7E9E6;
  padding: 30px 50px 60px;
  margin-top: 30px;
  font-size: 21px;
}
.block-disease .col {
  float: left;
  width: 525px;
  margin-top: 25px;
  display: table;
  text-align: center;
}
.block-disease .col:first-child, .block-disease .col:nth-child(2) {
  margin-top: 0;
}
.block-disease .col:nth-child(odd) {
  margin-right: 50px;
}
.block-disease .col .box-disease {
  display: table;
  width: 100%;
  min-height: 150px;
}
.block-disease .col .txt-disease {
  padding: 0 20px;
}
.block-disease.skin {
  background-color: #F8F4E4;
}
.block-disease.skin .box-disease {
  border-color: #CDB03F;
}
.block-disease.aller {
  background-color: #E6F9E3;
}
.block-disease.aller .box-disease {
  border-color: #54D641;
}
.block-disease.cancer {
  background-color: #E3F7F9;
}
.block-disease.cancer .box-disease {
  border-color: #51B7D0;
}
.block-disease .list-medical {
  text-align: left;
  float: left;
  width: 262px;
  padding-left: 28px;
  padding-top: 20px;
}
.block-disease .list-medical li.dot {
  margin-right: 0;
  margin-top: 3px;
}

.block-allergy {
  padding: 20px 30px;
}

.box-disease {
  background-color: #fff;
  border: 2px solid #EF91AE;
  padding: 23px 20px 30px;
  margin-top: 11px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}
.box-disease .txt-disease span {
  display: inline-block;
}
.box-disease.second {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.box-disease.second .txt-disease {
  width: 740px;
  padding-right: 44px;
  padding-left: 50px;
}
.box-disease.second .txt-disease span {
  display: inline;
}

.block-sub {
  margin-top: 18px;
  margin-bottom: 40px;
}
.block-sub .txt-sub {
  margin-top: 15px;
}

.arrow-down {
  position: relative;
  padding-top: 74px;
}
.arrow-down:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -42px;
  top: 22px;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 26px solid #54D641;
}
.arrow-down.down02:after {
  border-top-color: #D1B64D;
}

.block-test .title-box {
  background-color: #E6F9E3;
  padding: 9px 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.block-test .item {
  float: left;
  width: 380px;
  margin-right: 30px;
}
.block-test .clearfix .item:nth-child(3n) {
  margin-right: 0;
}
.block-test .txt-sub {
  padding: 18px 24px 0;
}

@media (max-width: 767px) {
  .list-intro {
    display: block;
    margin-top: 0.66rem;
  }
  .list-intro a {
    margin: 0.2rem auto;
  }

  .block-base {
    border-width: 0.02rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    -moz-box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.15);
  }

  .list-medical li.dot {
    margin-right: 0.2rem;
    padding-left: 0.2rem;
    text-indent: -0.22rem;
  }
  .list-medical .color02 {
    padding-left: 0.2rem;
  }

  .block-disease {
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
    padding: 0.3rem;
    margin-top: 0.4rem;
    font-size: 0.26rem;
  }
  .block-disease .col {
    float: none;
    width: 100%;
    margin-top: 0.3rem;
  }
  .block-disease .col:nth-child(2) {
    margin-top: 0.3rem;
  }
  .block-disease .col:nth-child(odd) {
    margin-right: 0;
  }
  .block-disease .col .box-disease {
    min-height: 1.5rem;
  }
  .block-disease .col .txt-disease {
    padding: 0;
  }
  .block-disease .list-medical {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .block-disease .list-medical li.dot {
    margin-top: 0.05rem;
  }

  .box-disease {
    border-width: 0.02rem;
    padding: 0.24rem;
    margin-top: 0.1rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    -moz-box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0.03rem 0.03rem 0 rgba(0, 0, 0, 0.2);
  }
  .box-disease.second {
    display: block;
  }
  .box-disease.second .txt-disease {
    text-align: center;
    width: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .box-disease.second .txt-disease span {
    display: inline-block;
  }
  .box-disease.second .link-more {
    margin-top: 0.16rem;
  }

  .block-sub {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .block-sub .txt-sub {
    margin-top: 0.16rem;
  }

  .arrow-down {
    padding-top: 0.8rem;
  }
  .arrow-down:after {
    margin-left: -0.42rem;
    top: 0.22rem;
    border-left-width: 0.42rem;
    border-right-width: 0.42rem;
    border-top-width: 0.26rem;
  }

  .block-test .title-box {
    padding: 0.1rem;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
  }
  .block-test .item {
    float: none;
    width: auto;
    margin-right: 0;
  }
  .block-test .item + .item {
    margin-top: 0.3rem;
  }
  .block-test .txt-sub {
    padding: 0.2rem 0.24rem 0;
  }
}
/* COMMON BANNER
 * ----------------------------------------------- */
.sec-banner {
  margin-top: 40px;
}
.sec-banner .img-banner {
  -moz-border-radius: 20px 20px 30px 30px;
  -webkit-border-radius: 20px;
  border-radius: 20px 20px 30px 30px;
  border-bottom: 10px solid #F8CFC2;
}
.sec-banner .title-banner {
  text-align: center;
  color: #746754;
  font-size: 40px;
  margin-top: -40px;
  letter-spacing: 0.3em;
  font-weight: 500;
  
  text-shadow:
  3px  3px 1px #ffffff,
  -3px  3px 1px #ffffff,
   3px -3px 1px #ffffff,
  -3px -3px 1px #ffffff,
   3px  0px 1px #ffffff,
   0px  3px 1px #ffffff,
  -3px  0px 1px #ffffff,
   0px -3px 1px #ffffff; 
 span{
  font-size: 16px;
  display: block;
 }
}
html.ie9 .sec-banner .title-banner, html.ie10 .sec-banner .title-banner {
  font-weight: 500;
}

@media (max-width: 767px) {
  .sec-banner {
    margin-top: 0.2rem;
  }
  .sec-banner .wrapper {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 100%;
    border-bottom: 0.1rem solid #F8CFC2;
  }
  .sec-banner .img-banner {
    height: 2rem;
    opacity: 0;
  }
  .sec-banner .title-banner {
    font-size: 0.44rem;
    margin-top: 0;
    letter-spacing: 0.3em;
    /* -webkit-text-stroke-width: 0.03rem; */
  }
}
/* COMMON CONTACT
 * ----------------------------------------------- */
.link-phone {
  line-height: 1.37143;
  color: #756855;
  font-weight: 900;
  letter-spacing: -0.025em;
  padding-left: 52px;
  background: url(../img/common/icn_phone.png) 0 center no-repeat;
  font-size: 35px;
  -webkit-text-fill-color: #756855;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}
.link-phone .visi {
  visibility: hidden;
}
html.ie9 .link-phone, html.ie10 .link-phone {
  font-weight: 500;
}

.cm-contact {
  margin-top: 26px;
  margin-left: 26px;
  text-align: center;
}
.cm-contact .break {
  display: none;
}
.cm-contact .link-phone {
  display: inline-block;
  vertical-align: middle;
}
.cm-contact .img-reser {
  margin-top: 3px;
}
.cm-contact .line-phone {
  border-top: 2px dotted #CDCDCD;
  border-bottom: 2px dotted #CDCDCD;
  padding: 18px 0;
}
.cm-contact .link-reser {
  display: block;
  border-bottom: 2px dotted #CDCDCD;
  text-align: center;
  font-size: 30px;
  padding-left: 32px;
}
.cm-contact .link-reser span {
  display: inline-block;
  padding: 13px 26px 13px 60px;
  background-image: url(../img/common/icn_reser01.png), url(../img/common/icn_reser02.png);
  background-position: left center, right 30px;
  background-repeat: no-repeat, no-repeat;
}

@media (max-width: 767px) {
  .link-phone {
    padding-left: 40px;
    background-size: 30px auto;
    font-size: 30px;
    -webkit-text-stroke-width: 0;
    font-weight: 600;
  }

  .cm-contact {
    margin-top: 0.36rem;
    margin-left: 0;
  }
  .cm-contact .img-reser {
    margin: 0.14rem auto 0;
    max-width: 266px;
  }
  .cm-contact .line-phone {
    padding: 0.3rem 0;
    border-bottom-width: 0.02rem;
    border-top-width: 0.02rem;
  }
  .cm-contact .link-reser {
    font-size: 0.34rem;
    padding-left: 0;
    border-bottom-width: 0.02rem;
  }
  .cm-contact .link-reser span {
    padding: 0.2rem 0.3rem 0.2rem 0.6rem;
    background-position: left center, right 0.38rem;
    background-size: 0.4rem auto, 0.15rem auto;
  }
}
/* COMMON BREADCRUMBS
 * ----------------------------------------------- */
.sec-breadcrumb {
  margin-top: -12px;
}
.sec-breadcrumb ul {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 52px;
}
.sec-breadcrumb li {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}
.sec-breadcrumb li.last {
  color: #EF91AE;
  text-decoration: underline;
}
.sec-breadcrumb a {
  color: #756855;
}
.sec-breadcrumb .icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .sec-breadcrumb {
    margin-top: 0;
  }
  .sec-breadcrumb ul {
    padding: 0.2rem 0;
  }
  .sec-breadcrumb li {
    font-size: 0.22rem;
  }
  .sec-breadcrumb .icon {
    margin-top: -0.04rem;
    padding: 0 0.08rem;
  }
  html.android .sec-breadcrumb .icon {
    margin-top: -0.02rem;
  }
}
/* SCROLLBAR
 * ----------------------------------------------- */
@media (max-width: 767px) {
  .scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
  }
  .scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
  }
  .scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
  }

  .scroll-element {
    display: none;
    box-sizing: content-box;
  }
  .scroll-element div {
    box-sizing: content-box;
  }
  .scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
  }
  .scroll-element .scroll-bar, .scroll-element .scroll-arrow {
    cursor: default;
  }

  .scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
  }
  .scroll-textarea > .scroll-content {
    overflow: hidden !important;
  }
  .scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
  }
  .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
  }

  .scrollbar-inner > .scroll-element {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
  }
  .scrollbar-inner > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
  }
  .scrollbar-inner > .scroll-element.scroll-x {
    bottom: 0;
    height: 0.08rem;
    left: 0;
    width: 100%;
  }
  .scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
  }
  .scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
    -webkit-border-radius: 0.08rem;
    -moz-border-radius: 0.08rem;
    border-radius: 0.08rem;
  }
  .scrollbar-inner > .scroll-element .scroll-element_track, .scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 0.08rem;
    -moz-border-radius: 0.08rem;
    border-radius: 0.08rem;
  }
  .scrollbar-inner > .scroll-element .scroll-element_track {
    background-color: #fff;
  }
  .scrollbar-inner > .scroll-element .scroll-bar {
    background-color: #A7A9AC;
  }
  .scrollbar-inner > .scroll-element:hover .scroll-bar, .scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #A7A9AC;
  }
  .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -0.12rem;
  }
  .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -0.12rem;
  }
  .scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -0.12rem;
  }
  .scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -0.12rem;
  }
}
/* SLICK JS
 * ----------------------------------------------- */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  display: table;
  content: "";
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  display: block;
  border: 0;
  text-indent: -9999px;
  cursor: pointer;
  opacity: 1;
  padding: 0;
}
.slick-arrow:hover {
  opacity: 0.8;
}

/* COMMON HEADER
 * ----------------------------------------------- */
header .box-logo {
  float: left;
  margin-right: -70px;
  margin-top: -30px;
}
header .block-right {
  float: right;
}
header .block-right .right {
  float: right;
}
header .block-top {
  overflow: hidden;
}
header .box-connect {
  text-align: right;
  margin-top: 32px;
}
header .box-connect.md{
  position: relative;
}
header .box-connect.md > h1{
  position:absolute;
}
header .box-connect .link-phone,
header .box-connect .link-doctor {
  display: inline-block;
  vertical-align: middle;
}
header .box-connect .link-doctor {
  margin-right: -24px;
  margin-top: 10px;
}
header .box-connect .img-reser {
  margin-right: 12px;
}
header .box-connect .link-phone {
  margin-right: 14px;
}
header .box-left {
  float: left;
}
header .nav {
  margin-top: 16px;
  border-bottom: 2px solid #EF91AE;
}
header .nav .list-nav {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}
header .nav .list-nav li {
  position: relative;
  padding-bottom: 26px;
}
header .nav .list-nav li a {
  display: inline-block;
}
header .nav .list-nav li.last a {
  padding-right: 0;
}
header .nav .list-nav li.active a {
  color: #EF91AE;
}
header .nav .list-nav li.active:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 24px;
  background: url(../img/common/header_arrow.png) center bottom no-repeat;
}
header .nav .list-nav .link-txt a {
  display: inline-block;
  font-size: 21px;
  -moz-transition: all 0.26s ease;
  -o-transition: all 0.26s ease;
  -webkit-transition: all 0.26s ease;
  transition: all 0.26s ease;
  padding: 0 22px;
}
header .nav .list-nav .link-txt a:hover {
  color: #EF91AE;
}
header .nav .link-home {
  margin-right: 38px;
}
header .nav .comma {
  color: #EF91AE;
  display: inline-block;
  font-style: italic;
  vertical-align: middle;
  font-size: 16px;
  margin-top: -10px;
}

.box-notice {
  border: 2px solid #756855;
  background: #fff;
  width: 752px;
  margin-top: 16px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 16px 0 16px 27px;
  -moz-box-shadow: 4px 4px 0 #d7d8d3;
  -webkit-box-shadow: 4px 4px 0 #d7d8d3;
  box-shadow: 4px 4px 0 #d7d8d3;
}
.box-notice span {
  display: inline-block;
  vertical-align: middle;
}
.box-notice .break {
  padding: 0 22px 0 15px;
  font-size: 25px;
  line-height: 1;
  font-style: italic;
  margin-top: -2px;
}
.box-notice .txt-notice {
  padding-left: 32px;
  font-size: 21px;
  background: url(../img/common/icn_warning.png) 0 center no-repeat;
}
.box-notice .txt-day {
  font-weight: bold;
  color: #EE91AD !important;
  font-size: 16px;
}
.box-notice>.txt-day>a{color:#EE91AD;}
.box-notice>.txt-day>a:hover{color:#736653 !important;}

@media (max-width: 767px) {
  header {
    /* position: relative; */
    width: 100%;
    position: fixed;
    z-index: 9900;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -webkit-transition: all 0.35s ease-out;
    transition: all 0.35s ease-out;
  }
  .box-notice.sm + h1{
    text-align: center;
  }
  header.header-fixed {
    z-index: 9000;
    position: fixed;
    width: 100%;
    left: 0;
    background: #FDFDFA;
    top: 0;
    opacity: 0;
  }
  header.header-fixed.visible {
    opacity: 1;
  }
  header .block-top {
    position: fixed;
    z-index: 9999;
    background: #FDFDFA;
    border-bottom: 0.02rem solid #EF91AE;
    top: 0;
    width: 100%;
  }
  header .btn-menu {
    position: absolute;
    right: 0.2rem;
    top: 50%;
    margin-top: -0.15rem;
    width: 0.5rem;
    height: 0.3rem;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  header .btn-menu span {
    display: block;
    position: absolute;
    height: 0.06rem;
    width: 100%;
    background: #EF91AE;
    border-radius: 0.08rem;
    opacity: 1;
    left: 0;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out 0.25s;
    -o-transition: ease-in-out 0.25s;
    -webkit-transition: ease-in-out 0.25s;
    transition: ease-in-out 0.25s;
  }
  header .btn-menu span:nth-child(1) {
    top: 0px;
    -moz-transform-origin: left center 50%;
    -ms-transform-origin: left center 50%;
    -webkit-transform-origin: left center 50%;
    transform-origin: left center 50%;
  }
  header .btn-menu span:nth-child(2) {
    top: 0.12rem;
    -moz-transform-origin: left center 50%;
    -ms-transform-origin: left center 50%;
    -webkit-transform-origin: left center 50%;
    transform-origin: left center 50%;
  }
  header .btn-menu span:nth-child(3) {
    top: 0.24rem;
    -moz-transform-origin: left center 50%;
    -ms-transform-origin: left center 50%;
    -webkit-transform-origin: left center 50%;
    transform-origin: left center 50%;
  }
  header.is-down .btn-menu span:nth-child(1) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0.15rem;
    left: 0.08rem;
  }
  header.is-down .btn-menu span:nth-child(2) {
    width: 0%;
    opacity: 0;
  }
  header.is-down .btn-menu span:nth-child(3) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0.15rem;
    left: 0.08rem;
  }
  header .box-logo {
    margin: 0.2rem 0;
    width: 3rem;
  }
  header .box-logo a {
    display: block;
  }
  header .box-logo .img-logo {
    width: 70%;
    margin: 0 auto;
  }
  header .nav {
    display: none;
    float: none;
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
    background: rgba(0, 0, 0, 0.6);
    margin-top: 0;
    border-bottom: 0;
  }
  header .nav .list-nav {
    display: block;
    padding-top: 1.22rem;
    background: #FDFDFA;
  }
  header .nav .list-nav li {
    position: relative;
    float: none;
    padding: 0;
    min-height: inherit;
  }
  header .nav .list-nav li a {
    display: block;
  }
  header .nav .list-nav li.last a {
    padding-right: 0.2rem;
  }
  header .nav .list-nav li.active:after {
    display: none;
  }
  header .nav .list-nav .link-txt a {
    display: block;
    font-size: 0.26rem;
    padding: 0.2rem 0.2rem;
    border-bottom: 0.02rem dotted #EF91AE;
  }
  header .nav .link-home {
    display: none;
  }
  header .nav .comma {
    display: none;
  }

  .box-notice {
    margin: 0.2rem;
    border-width: 0.02rem;
    width: auto;
    -moz-border-radius: 0.1rem;
    -webkit-border-radius: 0.1rem;
    border-radius: 0.1rem;
    padding: 0.2rem 0.2rem;
    -moz-box-shadow: 0.04rem 0.04rem 0 #d7d8d3;
    -webkit-box-shadow: 0.04rem 0.04rem 0 #d7d8d3;
    box-shadow: 0.04rem 0.04rem 0 #d7d8d3;
    margin-top: 100px;
  }
  .box-notice .break {
    display: none;
  }
  .box-notice .txt-notice {
    padding-left: 0.32rem;
    font-size: 0.24rem;
    background-size: 0.26rem auto;
  }
  .box-notice .txt-day {
    font-size: 0.2rem;
  }

  .wrap-contact .cm-contact {
    margin-top: 0;
  }
  .wrap-contact .cm-contact .link-phone {
    display: inline-block !important;
  }
  .wrap-contact .cm-contact .line-phone {
    border-bottom-width: 0;
    border-top-width: 0;
  }
  .wrap-contact .cm-contact .link-reser {
    display: none !important;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  border-top: 2px solid #756855;
  margin-top: 160px;
}
footer .wrapper {
  position: relative;
}
footer .link-logo {
  display: inline-block;
  margin-top: -78px;
}
footer .link-logo img {
  display: block;
}
footer .link-logo img + img {
  margin-top: 10px;
}
footer .btn-gotop {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: -54px;
  font-weight: bold;
  text-align: center;
  margin-left: 612px;
  width: 86px;
  font-size: 14px;
  padding-top: 66px;
  background: url(../img/common/btn_pagetop.png) center top no-repeat;
}
footer .box-map {
  height: 400px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  margin-top: 30px;
}
footer .box-map iframe {
  width: 100%;
  height: 100%;
}
footer .block-address {
  padding-left: 20px;
  padding-top: 24px;
}
footer .box-address {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  border-top: 2px dotted #CDCDCD;
  border-bottom: 2px dotted #CDCDCD;
  padding: 20px 50px;
}
footer .box-address .txt-address {
  font-size: 30px;
}
footer .box-address .link-more {
  margin-right: 48px;
}
footer .box-time {
  padding: 46px 0 24px;
}
footer .box-time .left {
  float: left;
  width: 550px;
}
footer .box-time .left:nth-child(2) {
  width: 630px;
}
footer .box-time .left:nth-child(2) .title-time {
  background: #8EBD20;
}
footer .box-time .title-time {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  min-width: 124px;
  background: #EF91AE;
  font-size: 21px;
  padding: 3px 36px 2px 12px;
  margin: 4px 0;
  height: 34px;
}
footer .box-time .title-time:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 34px solid #FDFDFA;
  border-left: 20px solid transparent;
  right: 0;
  top: 0;
}
footer .box-time .txt-hour {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  margin: 0 18px;
}
footer .cm-contact {
  *zoom: 1;
  margin: 26px 0 0 0;
  position: relative;
}
footer .cm-contact:after {
  content: "";
  display: table;
  clear: both;
}
footer .cm-contact .break {
  display: inline-block;
}
footer .cm-contact .line-phone {
  float: left;
  width: 650px;
  margin-right: 30px;
  padding: 14px 0;
}
footer .cm-contact .link-reser {
  float: left;
  width: 400px;
  border-top: 2px dotted #CDCDCD;
  padding: 4px 36px 4px 0;
}
footer .cm-contact .img-reser {
  margin: 0 5px;
}
footer .cm-contact .link-phone {
  margin: 0 5px;
}
footer .footer_sns {
  position: absolute;
  right: 0;
  bottom: 6px;

}

footer .block-copy {
  text-align: center;
  padding: 13px 10px;
  background: #DEF1FB;
  margin-top: 42px;
  font-size: 14px;
  letter-spacing: 0.35em;
}

@media (max-width: 1400px) {
  footer .btn-gotop {
    left: auto;
    right: 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  footer {
    margin-top: 1.8rem;
    border-top-width: 0.02rem;
  }
  footer .link-logo {
    width: 4rem;
    margin-top: -0.8rem;
  }
  footer .link-logo img + img {
    margin-top: 0.1rem;
  }
  footer .btn-gotop {
    display: none;
  }
  footer .box-map {
    height: 3rem;
    -moz-border-radius: 0.2rem;
    -webkit-border-radius: 0.2rem;
    border-radius: 0.2rem;
    margin-top: 0.3rem;
  }
  footer .block-address {
    padding-left: 0;
    padding-top: 0.3rem;
  }
  footer .box-address {
    border-top-width: 0.02rem;
    border-bottom-width: 0.02rem;
    display: block;
    padding: 0.2rem 0.2rem;
  }
  footer .box-address .txt-address {
    font-size: 0.28rem;
  }
  footer .box-address .link-more {
    margin-right: 0;
    margin-top: 0.2rem;
  }
  footer .box-time {
    padding: 0.3rem 0;
  }
  footer .box-time .left {
    float: none;
    width: auto;
  }
  footer .box-time .left:nth-child(2) {
    width: auto;
  }
  footer .box-time .title-time {
    min-width: auto;
    font-size: 0.22rem;
    padding: 0.04rem 0.16rem;
    margin: 0.05rem 0;
    height: auto;
  }
  footer .box-time .title-time:after {
    display: none;
  }
  footer .box-time .txt-hour {
    font-size: 0.22rem;
    margin: 0 0.16rem;
  }
  footer .cm-contact {
    margin: 0;
  }
  footer .cm-contact .line-phone {
    float: none;
    width: auto;
    margin-right: 0;
    padding: 0.2rem 0;
  }
  footer .cm-contact .link-reser {
    float: none;
    width: auto;
    padding: 0.04rem 0;
    border-top: 0;
  }
  footer .cm-contact .img-reser {
    margin: 0.14rem auto 0;
  }
  footer .cm-contact .link-phone {
    margin: 0;
  }
  footer .cm-contact .break {
    display: none;
  }
  footer .block-copy {
    padding: 0.2rem 0;
    margin-top: 0.4rem;
    font-size: 0.2rem;
  }

footer .cm-contact .link-reser{
    width:100%;
    position:fixed;
    bottom:0;
    right:0;
    left:0;
    margin:0 auto;
    background:#EF91AE;
    z-index:9999;
/*    border-top:1px solid #756855; */
  }
footer .cm-contact .link-reser {
    display: inline-block;
    width:100%;
    height:60px;
    background-image: url(../img/common/foot_reserve.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 250px auto;
    }

footer .cm-contact .link-reser span {
    display: none;
  }
footer {
    padding-bottom:56px;
  }

  .yokoku{
    background:#ff6d6d;
    padding:5% 0;
    margin:50px auto 30px;
  }

  .yokoku p{
    width:95%!important;
    font-size:14px!important;
    margin:0 auto 5px!important;
  }
  .yokoku h3{
    width:95%!important;
    font-size:20px!important;
    margin:0 auto 20px!important;
  }


  .yokoku_box{
    width:100%!important;
    padding:1% 0!important;
  }
  .yokoku_box table{
    width:95%!important;
    margin:0 auto!important;
  }
  .yokoku_box ul{
    width:95%!important;
    margin:0 auto 10px!important;
  }

}

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