@charset "utf-8";
/* ----------------------------------------------------
base setting
---------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-tap-highlight-color: transparent;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%; /* 10px */
}
body {
  font-size: min(1.3vw, 1.6rem);
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}
#wrapper {
  margin: 0 auto;
  position: relative;
}
/* ----------------------------------------------------
element base setting
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6, table, ul, ol, p, dl {
  font-size: 100%;
  margin: 0;
}
ul {
  list-style: none;
}
dd {
  margin: 0;
}
table, ul, ol, p, dl {
  margin-bottom: 20px;
}
header table, header ul, header ol, header p, header dl, footer table, footer ul, footer ol, footer p, footer dl {
  margin-bottom: 0px;
}
/* link  */
a[href^="tel:"] {
  cursor: default;
}
.clickable {
  cursor: pointer;
}
.clearfix {
  zoom: 100%;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
@media (min-width:768px) { /* PC + tablet */
  .pcNoDisplay, #ftSlideBlock {
    display: none !important;
  }
  a:hover[href^="tel:"] {
    text-decoration: none;
  }
}
@media (max-width: 1200px) and (min-width: 768px) { /*  tablet */

}
@media (max-width: 767px) { /*  sp */
  body {
    font-size: 3.8vw;
  }
  .spNoDisplay {
    display: none;
  }
  a:hover {
    text-decoration: none !important;
  }
  img {
    width: 100%;
  }
  table, ul, ol, p, dl {
    margin-bottom: 2.5vw;
  }
}
/* ----------------------------------------------------
 calendar
---------------------------------------------------- */
div.cal_wrapper {
  margin: 0;
}
div.cal_wrapper table {
  width: 100%;
  margin-bottom: 10px;
}
div.cal_wrapper table tr.headline, div.cal_wrapper table td {
  background: transparent;
}
div.cal_wrapper table.cal tr th {
  background: none;
}
div.cal_wrapper table.cal tr th p {
  float: left;
  margin: 0px 0px 5px;
  font-weight: 600;
  font-size: min(1.16vw,1.4rem);
}
div.cal_wrapper table.cal tr th div.cal_ui {
  float: right;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
  font-size: min(1.16vw,1.4rem);
  margin: 0px 1px 5px;
    line-height: 1;
  padding: 5px;
  cursor: pointer;
}
div.cal_wrapper table.cal tr td {
  font-size: min(1.16vw,1.4rem);
  text-align: center;
  padding: 1px;
}
div.cal_wrapper table.cal tr.headline td {
  padding: 5px;
}
div.cal_wrapper table.cal tr td div {
  position: relative;
  font-size: min(1.16vw,1.4rem);
  text-align: center;
  padding: 5px;
}
div.cal_wrapper table.cal tr td div span {
  position: absolute;
  top: 30px;
  left: 0px;
  display: none;
  width: 180px;
  border: solid 1px #EEE;
  background-color: #FFF;
  text-align: left;
  padding: 5px;
  z-index: 10;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  box-shadow: 1px 1px 3px #666;
}
div.cal_wrapper table.cal tr td div.backward {
  font-weight: normal;
  opacity: 0.5;
}
div.cal_wrapper table.cal tr td div.pointer {
  cursor: pointer;
}
.cal-txt {
  font-size: 1.2rem;
}
@media (max-width: 1200px) and (min-width: 768px) {

}
@media (max-width: 767px) {
  div.cal_wrapper table.cal tr th p {
    font-size: 4vw;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input {
    font-size: 3.2vw;
  }
  div.cal_wrapper table.cal tr td {
    font-size: 3.7vw;
  }
  div.cal_wrapper table.cal tr.headline td {
    padding: 0.6vw;
  }
  div.cal_wrapper table.cal tr td div {
    font-size: 3.7vw;
    padding: 0.6vw;
  }
  div.cal_wrapper table.cal tr td div span {
    top: 4vw;
    width: 24vw;
    padding: 0.4vw;
  }
  .cal-txt {
    font-size: 3.7vw;
  }
}
/* --------------------------------------------------
link / list 
----------------------------------------------------- */
ul.listDot li {
  padding-left: min(1.3vw, 1.6rem);
  text-indent: max(-1.3vw, -1.6rem);
}
ul.listDot li::before {
  content: "";
  display: inline-block;
  margin-right: min(0.4vw, 5px);
  width: min(0.5vw, 6px);
  height: min(0.5vw, 6px);
  border-radius: 50%;
  background: #eee;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
ul.listDot li {
  padding-left: 3vw;
  text-indent: -3vw;
}
ul.listDot li::before {
  margin-right: 1vw;
  width: 1.5vw;
  height: 1.5vw;
}

}