/* ============================================= */
/* Ver.1.3.2                                     */
/* ============================================= */
.owl-carousel {
  /* display none until init */
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
}
.owl-carousel .owl-page, .owl-carousel .owl-buttons div {
  cursor: pointer;
}
.owl-carousel .owl-wrapper:after {
  /* clearfix */
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: static;
  height: auto;
}

.owl-pagination {
  position: absolute;
  left: 20%;
  right: 20%;
  width: 60%;
}

.owl-prev {
  position: absolute;
  left: 0;
  top: -10px;
}

.owl-next {
  position: absolute;
  right: 0;
  top: -10px;
}

.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-theme .owl-controls {
  margin-top: 15px;
  text-align: center;
  /* Styling Next and Prev buttons */
}
.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  padding: 10px;
  top: calc(50% - 28px);
  text-indent: -9999px;
  overflow: hidden;
  height: 38px;
  width: 20px;
  background-image: url(img/carousel-allow.png);
}
.owl-theme .owl-controls .owl-next {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 4px 4px;
  border-radius: 20px;
  background: #f9f0e4;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.owl-theme .owl-controls .owl-page.active span {
  background: #f8282c;
}

.owl-item {
  padding: 0%;
}
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

.owl-fade-out {
  z-index: 2;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.owl-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
  display: none;
}
.owl-carousel .owl-wrapper-outer {
  padding-bottom: 20px;
}
.owl-carousel .owl-controls {
  margin: 0;
  height: auto;
}
.owl-carousel .owl-pagination {
  display: block;
  padding-bottom: 20px;
  bottom: -26px;
}
.owl-carousel .owl-prev {
  left: -5px;
}
.owl-carousel .owl-next {
  right: -5px;
}
.owl-carousel .item {
  width: 100%;
  text-align: center;
  float: left;
}
.owl-carousel .item img {
  max-width: 100%;
}
.owl-carousel .item p {
  font-size: 1.2rem;
  padding: 6px;
}
.owl-carousel .item p.full {
  cursor: auto;
}
.owl-carousel .item p.full:hover {
  position: relative;
  top: 0px;
}
@media only screen and (min-width: 1201px) {
  .owl-carousel .item {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  .owl-carousel img {
    width: 98%;
  }
  .owl-carousel .item {
    min-width: 96%;
    margin: 0;
  }
}

.owl-theme .owl-controls .owl-page span {
  background-color: white;
  border: 1px solid #f8282c;
}
.owl-theme .owl-controls .owl-page.active span {
  background-color: #f8282c;
}
.owl-theme .owl-controls .owl-buttons div {
  background-image: url(../img/carousel-allow.png);
}
.owl-theme .owl-controls .owl-next {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mobile #wiget-carousel02,
.tablet #wiget-carousel02 {
  display: none;
}
.mobile #wiget-carousel02 .item,
.tablet #wiget-carousel02 .item {
  width: 96%;
  margin: 6px 2%;
}
.mobile #wiget-carousel02 .item .button,
.tablet #wiget-carousel02 .item .button {
  display: none;
}
.mobile #wiget-carousel02 .item dl,
.tablet #wiget-carousel02 .item dl {
  display: table;
  width: 100%;
  border: 1px dotted;
}
.mobile #wiget-carousel02 .item dt,
.tablet #wiget-carousel02 .item dt {
  width: 50%;
  display: table-cell;
  padding: 0.65rem 0;
}
.mobile #wiget-carousel02 .item dd,
.tablet #wiget-carousel02 .item dd {
  width: 50%;
  display: table-cell;
}
.mobile .prof-info .carousel-list .owl-carousel,
.tablet .prof-info .carousel-list .owl-carousel {
  padding: 0;
}
.mobile .cp-carousel,
.tablet .cp-carousel {
  width: 85%;
  margin: 20px 7.5%;
}

.tab .area {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}
.tab .tab-nav {
  border-bottom: 1px solid #f8282c;
  overflow: hidden;
}
.tab .tab-nav li {
  float: left;
  width: auto;
  border: 1px solid #f8282c;
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
  padding: 7px 0px;
  background-color: rgba(255, 255, 255, 0.7);
}
.tab .tab-nav li a {
  border: none;
  padding: 10px 10px;
}
.tab .tab-nav li.active {
  background-color: #f8282c;
  border-radius: 8px 8px 0px 0px;
  font-weight: bold;
  padding: 7px 0px;
  border-bottom: none;
}
.tab .tab-nav li.active a {
  color: white;
  border: none;
}

.mobile .tab .tab-nav {
  display: table;
  table-layout: fixed;
}
.mobile .tab .tab-nav li {
  display: table-cell;
  float: none;
  width: 20%;
  border-radius: 6px 6px 0px 0px;
  padding: 0 6px;
}
.mobile .tab .tab-nav li a {
  padding: 5px 0;
}
.mobile .tab .area {
  height: auto;
  overflow: hidden;
}

table {
  width: 100%;
}

.respo-tbl {
  width: 100%;
  text-align: left;
  margin: 0% auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  padding: 10px;
  border: none;
}
.respo-tbl tr {
  border-bottom: 1px dotted #222222;
}
.respo-tbl tr:last-child {
  border-bottom: none;
}
.respo-tbl th,
.respo-tbl td {
  padding: 2%;
}
.respo-tbl th {
  width: 35%;
  vertical-align: middle;
}
.respo-tbl th span {
  width: 100%;
  display: inline-block;
  margin-top: 5px;
  color: #c9302c;
}
.respo-tbl th .note {
  color: #c9302c;
}
.respo-tbl td {
  width: 55%;
  vertical-align: middle;
}
.respo-tbl td:nth-child(even) {
  width: 14%;
}
.respo-tbl td .req {
  border: 1px solid;
  padding: 6px;
  border-radius: 4px;
}
.respo-tbl select,
.respo-tbl textarea {
  width: 100%;
}
.respo-tbl label:after {
  margin: 10px 0 0;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.price-tbl th {
  width: auto;
  text-align: left;
}
.price-tbl td {
  width: 7rem;
  text-align: right;
}

.cal-table {
  width: 100%;
  margin: 0 0 10px 0;
  text-align: center;
}
.cal-table th, .cal-table td {
  padding: 5px;
}
.cal-table th {
  width: 14.28571%;
  color: white;
}
.cal-table th background-colortable {
  width: 100%;
}
.cal-table th .respo-tbl {
  width: 95%;
  text-align: left;
  margin: 5% auto;
}
.cal-table th .respo-tbl tr {
  border-bottom: 1px dotted #222222;
}
.cal-table th .respo-tbl th,
.cal-table th .respo-tbl td {
  padding: 2%;
}
.cal-table th .respo-tbl th {
  width: 35%;
  vertical-align: middle;
}
.cal-table th .respo-tbl th span {
  width: 100%;
  display: inline-block;
  margin-top: 5px;
  color: #c9302c;
}
.cal-table th .respo-tbl th .note {
  color: #c9302c;
}
.cal-table th .respo-tbl td {
  width: 55%;
  vertical-align: middle;
}
.cal-table th .respo-tbl td:nth-child(even) {
  width: 10%;
}
.cal-table th .respo-tbl td .req {
  border: 1px solid;
  padding: 6px;
  border-radius: 4px;
}
.cal-table th .respo-tbl input,
.cal-table th .respo-tbl select,
.cal-table th .respo-tbl textarea {
  width: 100%;
}
.cal-table th .respo-tbl input[type="radio"],
.cal-table th .respo-tbl input[type="checkbox"] {
  width: auto;
}
.cal-table th .respo-tbl label:after {
  margin: 10px 0 0;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.cal-table th .price-tbl th {
  width: auto;
  text-align: left;
}
.cal-table th .price-tbl td {
  width: 7rem;
  text-align: right;
}
.cal-table th .cal-table {
  width: 100%;
  margin: 0 0 10px 0;
  text-align: center;
}
.cal-table th .cal-table th, .cal-table th .cal-table td {
  padding: 5px;
}
.cal-table th .cal-table th {
  width: 14.28571%;
  background-color: #f9f0e4;
  color: white;
}
.cal-table th .cal-table td {
  border: 1px solid #fcf0e1;
}
.cal-table th .cal-table td.today {
  background-color: #fcf0e1;
}
.cal-table th .cal-table td.today:after {
  content: none;
}
.cal-table th .normal-tbl {
  width: 100%;
  margin: 0;
  text-align: left;
}
.cal-table th .normal-tbl th, .cal-table th .normal-tbl td {
  width: auto;
}
.cal-table th .normal-tbl th {
  background-color: #fcf0e1;
  color: #222222;
}
.cal-table th .normal-tbl td.today {
  background-color: #fcf0e1;
}
.cal-table th .normal-tbl td.today:after {
  content: none;
}
.cal-table th .normal-tbl td:nth-child(even) {
  width: auto;
}
.cal-table th table {
  width: 100%;
}
.cal-table th .respo-tbl {
  width: 95%;
  text-align: left;
  margin: 5% auto;
}
.cal-table th .respo-tbl tr {
  border-bottom: 1px dotted #222222;
}
.cal-table th .respo-tbl th,
.cal-table th .respo-tbl td {
  padding: 2%;
}
.cal-table th .respo-tbl th {
  width: 35%;
  vertical-align: middle;
}
.cal-table th .respo-tbl th span {
  width: 100%;
  display: inline-block;
  margin-top: 5px;
  color: #f8282c;
}
.cal-table th .respo-tbl th .note {
  color: #c9302c;
}
.cal-table th .respo-tbl td {
  width: 55%;
  vertical-align: middle;
}
.cal-table th .respo-tbl td:nth-child(even) {
  width: 10%;
}
.cal-table th .respo-tbl td .req {
  border: 1px solid;
  padding: 6px;
  border-radius: 4px;
}
.cal-table th .respo-tbl input,
.cal-table th .respo-tbl select,
.cal-table th .respo-tbl textarea {
  width: 100%;
}
.cal-table th .respo-tbl input[type="radio"],
.cal-table th .respo-tbl input[type="checkbox"] {
  width: auto;
}
.cal-table th .respo-tbl label:after {
  margin: 10px 0 0;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.cal-table th .price-tbl th {
  width: auto;
  text-align: left;
}
.cal-table th .price-tbl td {
  width: 7rem;
  text-align: right;
}
.cal-table th .cal-table {
  width: 100%;
  margin: 0 0 10px 0;
  text-align: center;
}
.cal-table th .cal-table th, .cal-table th .cal-table td {
  padding: 5px;
}
.cal-table th .cal-table th {
  width: 14.28571%;
  background-color: #f9f0e4;
  color: white;
}
.cal-table th .cal-table td {
  border: 1px solid #fcf0e1;
}
.cal-table th .cal-table td.today {
  background-color: #fcf0e1;
}
.cal-table th .cal-table td.today:after {
  content: none;
}
.cal-table th .normal-tbl {
  width: 100%;
  margin: 0;
  text-align: left;
}
.cal-table th .normal-tbl th, .cal-table th .normal-tbl td {
  width: auto;
}
.cal-table th .normal-tbl th {
  background-color: #f2f2f2;
  color: #222222;
}
.cal-table th .normal-tbl td.today {
  background-color: #fcf0e1;
}
.cal-table th .normal-tbl td.today:after {
  content: none;
}
.cal-table th .normal-tbl td:nth-child(even) {
  width: auto;
}
.cal-table td {
  border: 1px solid #fcf0e1;
}
.cal-table td.today {
  background-color: #fcf0e1;
}
.cal-table td.today:after {
  content: none;
}

.normal-tbl {
  width: 100%;
  margin: 0;
  text-align: left;
  border: 1px solid #222222;
  background-color: white;
}
.normal-tbl th, .normal-tbl td {
  width: auto;
}
.normal-tbl th {
  background-color: #f2f2f2;
  color: #222222;
}
.normal-tbl td.today {
  background-color: #fcf0e1;
}
.normal-tbl td.today:after {
  content: none;
}
.normal-tbl td:nth-child(even) {
  width: auto;
}

table.detail {
  width: 60%;
  float: left;
  overflow: hidden;
  zoom: 1;
  border: 1px solid #aaaaaa;
  border-bottom: none;
  border-collapse: separate;
  font-size: 1.4rem;
}
table.detail td {
  padding: 10px 5px;
  vertical-align: top;
  border-bottom: 1px solid #aaaaaa;
}
table.detail td:nth-child(odd) {
  width: 20%;
  text-align: center;
  font-weight: bold;
  background: #f2f2f2;
}
table.detail span {
  font-weight: bold;
  padding-right: 10px;
}

.mobile .respo-tbl {
  width: 96%;
  margin: 10px 2%;
}
.mobile .respo-tbl tr {
  background-color: #F8F8F8;
  margin: 10px 2%;
  display: block;
  overflow: hidden;
  border-bottom: none;
}
.mobile .respo-tbl th, .mobile .respo-tbl td {
  display: list-item;
  width: 100%;
  list-style: none;
  float: left;
}
.mobile .respo-tbl th {
  text-align: left;
  width: auto;
  max-width: 78%;
  font-weight: 700;
}
.mobile .respo-tbl th span {
  padding: 0;
  display: block;
}
.mobile .respo-tbl td {
  padding-top: 0;
}
.mobile .respo-tbl td:nth-child(even) {
  width: 62px;
  float: right;
  background-color: inherit;
}
.mobile .respo-tbl td .req {
  position: relative;
  top: 10px;
  right: -10%;
}
.mobile .respo-tbl input, .mobile .respo-tbl select, .mobile .respo-tbl textarea {
  width: 100%;
}
.mobile .respo-tbl input[type="checkbox"], .mobile .respo-tbl input[type="radio"] {
  width: auto;
}
.mobile .respo-tbl .req {
  width: 100%;
  height: 30px;
  padding: 5px;
  overflow: hidden;
  background-color: #f8282c;
  color: white;
  text-align: center;
  line-height: 18px;
  border: none;
}
.mobile .qa-area .respo-tbl.normal-tbl {
  border: none;
  width: 100%;
  margin: 0;
}
.mobile .qa-area .respo-tbl.normal-tbl th {
  width: 98%;
  max-width: 98%;
  margin: 0px 1% 0;
}
.mobile .qa-area .respo-tbl.normal-tbl tr {
  background-color: white;
  margin-top: 0;
}
.mobile .qa-area .respo-tbl.normal-tbl td {
  width: 100%;
  float: none;
  margin-bottom: 15px;
}

/* ============================================= */
/* tag-list CSS                                    */
/* ============================================= */
.tag-list {
  margin-top: 3%;
}
.tag-list li {
  width: auto;
  float: left;
  height: 24px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-align: center;
  position: relative;
  margin-bottom: 9px;
  margin-left: 5px;
  border-radius: 4px;
  background-color: rgba(118, 106, 100, 0.3);
  text-decoration: none;
  padding: 0 10px 0 10px;
  overflow: hidden;
}
.tag-list li a {
  color: white;
}
.tag-list li p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

.table-list ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-content: stretch;
  align-items: stretch;
  justify-content: flex-start;
}
.table-list ul li {
  background-color: white;
  overflow: hidden;
  width: 49%;
  border: 1px solid #222222;
  margin-bottom: 1px;
  margin-left: 1px;
  padding: 6px 10px;
}
.table-list ul li a {
  text-decoration: underline;
}

.mobile .table-list li {
  width: 48%;
  float: left;
  margin: 1px 1% 1px;
}

.today-time {
  width: calc(40% - 5px);
  float: left;
  margin-top: 6px;
}
.today-time p {
  color: #f8282c;
  font-size: 14px;
  font-size: 1.4rem;
}
.today-time span {
  border: 1px solid;
  padding: 6px 10px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  background-color: #f8282c;
  color: white;
  margin: 0;
}
.today-time time {
  padding-left: 20px;
  border-radius: 4px;
  font-weight: bold;
}
.blog_post .today-time, .blog_list .today-time {
  margin-left: 10px;
  margin-bottom: 5px;
}

.mobile .today-time {
  width: 90%;
}
.blog_post .mobile .today-time {
  margin-left: 2%;
  margin-bottom: 2%;
}

/************************************************************
 * modal
 ************************************************************/
.cookiemodal {
  display: none;
  z-index: 9999;
  margin: 0;
  color: #646c71;
  background-color: #FFFFFF;
}

.modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.76);
}
.modal h2 {
  font-size: large;
  padding: 10px 0;
  font-weight: 800;
}

.Absolute-Center {
  width: 50%;
  height: 50%;
  overflow: auto;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* .close_modal{z-index: 999999; position: fixed;; top: 0; right: 0;} */
.close_modal a {
  color: #646c71;
}

/***********************/
.md-modal {
  visibility: hidden;
}
.md-modal .button {
  padding: 5px;
  width: 60%;
  margin: 15px 20% 0;
}

.md-show {
  visibility: visible;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.md-close {
  width: 100%;
}

.modal-unit {
  height: auto;
  width: 420px;
  background: #fff;
  border-radius: 5px;
  z-index: 9999;
  margin: 22.5% auto;
  padding: 20px;
}
.modal-unit .icon_box ul {
  overflow: hidden;
}
.modal-unit .icon_box ul li {
  height: 40px;
  width: auto;
  float: left;
  padding-right: 8px;
  margin-bottom: 10px;
}
.modal-unit .icon_box ul li img {
  width: 25px;
  vertical-align: middle;
  margin-right: 5px;
}

.mobile .modal-unit {
  width: auto;
}

.js_preview {
  border: 7px solid #222222;
  background-color: #222222;
  z-index: 9998;
}

.sp_preview {
  display: none;
}

.mobile .sp_preview {
  display: block;
  text-align: center;
  float: inherit;
}
.mobile .sp_preview img {
  width: 100%;
}

.old-type.cp .owl-carousel .item img {
  height: 250px;
}

.report-list {
  margin: 2% 0;
  padding: 2%;
  overflow: hidden;
  position: relative;
  height: auto;
  background-color: #f9f0e4;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #f8282c;
}
.report-list img {
  width: 100%;
}
.report-list .title {
  padding: 0 0.5% 0.5%;
  width: 100%;
  overflow: hidden;
}
.report-list .title .day,
.report-list .title .name {
  margin: 6px 5px 0 0;
  font-size: 1.5rem;
  float: left;
  display: block;
}
.report-list .title .split2 {
  margin-bottom: 10px;
  float: right;
  width: 20%;
}
.report-list .pic {
  padding: 0.5%;
  float: left;
  width: 18%;
}
.report-list .report-contents {
  margin: 0.5% 0;
  padding: 16px;
  float: left;
  width: 42%;
}
.report-list .report-contents h4 {
  border-bottom: 1px dotted #f8282c;
}
.report-list .reply_none {
  width: 82%;
}
.report-list .reply {
  margin: 0.5% 0;
  padding: 16px;
  float: left;
  width: 40%;
  height: auto;
  background-color: rgba(118, 106, 100, 0.3);
  border-radius: 4px;
}
.report-list .reply h4 {
  border-bottom: 1px dotted white;
}
.report-list h4 {
  margin: 0 0 5px;
  padding: 0 0 5px;
  font-weight: bold;
}

.mobile .report-list {
  width: 96%;
  margin: 0 2% 10px;
}
.mobile .report-list .report-info {
  width: 100%;
}
.mobile .report-list .button-area {
  overflow: hidden;
  width: 100%;
}
.mobile .report-list .button-area .button {
  width: 50%;
}
.mobile .report-list .title {
  width: 100%;
}
.mobile .report-list .pic {
  width: 50%;
  margin: 0 25%;
}
.mobile .report-list .report-contents {
  width: 100%;
}
.mobile .report-list .reply {
  width: 100%;
}
.mobile .report-list .split2 {
  width: 100%;
}

.cp .owl-carousel {
  max-width: 300px;
  margin: 10px auto 0;
}
.cp .owl-carousel .item img {
  width: auto;
  height: 400px;
}
.cp .carousel-list img {
  width: 100%;
}
.cp .carousel-list .item {
  margin: 0;
}
.cp .owl-theme .owl-controls .owl-buttons div:hover {
  background-color: #f65557;
  opacity: 0.7;
  filter: alpha(opacity=70);
  margin: 0 5px;
}
.cp #wiget-carousel02 {
  max-width: 90%;
}
.cp #wiget-carousel02 .item {
  min-width: inherit;
  padding: 0 2px;
}
.cp .table-list ul {
  margin: 5px 0 15px;
}
.cp .tag-list p,
.cp .individual_list p {
  padding: 7px 0 10px;
  color: #6d6d6d;
}
.cp .tag-list th,
.cp .individual_list th {
  width: 50%;
}
.cp .sat {
  color: #4589d8;
}
.cp .cp-rank img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 3px;
}
.cp .cpprof-area .cp-controller {
  float: right;
  text-align: right;
  margin-top: 6px;
}
.cp .cpprof-area .cp-controller li {
  float: left;
}
.cp .cpprof-area .cp-controller .button {
  width: 120px;
  width: 12rem;
}
.cp .cpprof-area .cp-controller .number-counter {
  width: 100px;
  width: 10rem;
  margin: 0 10px;
  background-color: #c4c4c4;
  border-radius: 4px;
  text-align: center;
  padding: 9px 0;
  padding: 0.9rem 0;
}
.cp .cpprof-area .cpprof {
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
.cp .cpprof-area .cpprof .prof-visual {
  width: 40.65%;
  float: left;
  margin-right: 2%;
}
.cp .cpprof-area .cpprof .prof-visual .owl-controls {
  height: 30px;
}
.cp .cpprof-area .cpprof .prof-visual .subinfo {
  width: 100%;
  border: 1px solid #f65557;
  border-radius: 8px;
  padding: 10px;
  margin: 10px 0;
}
.cp .cpprof-area .cpprof .prof-info {
  width: 57.35%;
  float: left;
}
.cp .cpprof-area .cpprof .prof-info .ico {
  width: 60%;
  margin: 5px 0;
  overflow: hidden;
}
.cp .cpprof-area .cpprof .prof-info .ico img {
  width: 100%;
  max-width: 40px;
  cursor: pointer;
  overflow: hidden;
}
.cp .cpprof-area .cpprof .prof-info .ico li {
  width: 16.66667%;
  float: left;
  padding-right: 2px;
}
.cp .cpprof-area .cpprof .prof-info .item .date {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 5px;
  background-color: #f8282c;
}
.cp .cpprof-area .cpprof .prof-info .item .att-time {
  display: block;
  border: 1px solid #f8282c;
  margin-bottom: 4px;
  border-radius: 4px;
}
.cp .cpprof-area .cpprof .prof-info .item .att-time dt, .cp .cpprof-area .cpprof .prof-info .item .att-time dd {
  font-size: 13px;
  font-size: 1.3rem;
  padding: 6px 0;
}
.cp .cpprof-area .cpprof .prof-info .item .att-time dt {
  background-color: #c8c8c8;
  color: #222222;
}
.cp .cpprof-area .cpprof .prof-info .item .att-time dd time {
  display: block;
  padding: 6.5px 0;
  padding: 0.65rem 0;
  letter-spacing: -1px;
  letter-spacing: -0.1rem;
}
.cp .cpprof-area .cpprof .prof-info .today-item .att-time dt {
  background-color: #f8282c;
  color: white;
}
.cp .cpprof-area .cpprof .prof-info .today-item .button {
  background-color: #f8282c;
  box-shadow: 0 3px 0 rgba(118, 106, 100, 0.3);
}
.cp .cpprof-area .cpprof .prof-info .today-item .button:hover {
  opacity: 0.8;
}
.cp .cpprof-area .cpprof .option_play li {
  width: 100%;
  padding: 1% 0;
  overflow: hidden;
  background: #f2f2f2;
  display: table;
}
.cp .cpprof-area .cpprof .option_play li div {
  padding: 1%;
  display: table-cell;
  layout-grid-line: 160px;
}
.cp .cpprof-area .cpprof .option_play li .nomber {
  width: 70px;
  color: #f8282c;
  text-align: center;
}
.cp .cpprof-area .cpprof .option_play li .content {
  padding-left: 1%;
  width: 240px;
  border-left: 1px dotted #f8282c;
  border-right: 1px dotted #f8282c;
}
.cp .cpprof-area .cpprof .option_play li .content span.new {
  line-height: 10px;
  line-height: 1rem;
}
.cp .cpprof-area .cpprof .option_play li .content span.new:after {
  content: "new";
  background-color: #f8282c;
  color: white;
}
.cp .cpprof-area .cpprof .option_play li .content i.fa {
  margin-left: 1%;
}
.cp .cpprof-area .cpprof .option_play li .content a {
  cursor: default;
}
.cp .cpprof-area .cpprof .option_play li .fee {
  padding-left: 1%;
  width: 80px;
  color: #f8282c;
}
.cp .cpprof-area .cpprof .option_play li .state {
  padding-left: 1%;
  text-align: center;
  width: 14%;
  font-weight: bold;
  font-size: 1.6rem;
  color: #f8282c;
  border-left: 1px dotted #f8282c;
}
.cp .cpprof-area .cpprof .option_play li:nth-child(2n+0) {
  background: white;
}
.cp .cpprof-area .cpprof .proflist {
  overflow: hidden;
}
.cp .cpprof-area .cpprof .kouyaku-area {
  background-color: #ffea7b;
}
.cp .cpprof-area .cpprof .kouyaku-area li {
  padding: 5px 3px 5px;
  border-bottom: 1px dotted #1a1a1a;
}
.cp .cpprof-area .cpprof .blog-area li {
  overflow: hidden;
  border: 1px solid rgba(181, 181, 181, 0.8);
  padding: 10px;
  margin: 0px 0px 8px 10px;
  background-color: white;
}
.cp .cpprof-area .cpprof .blog-area li .pic {
  width: 40%;
  float: left;
  padding: 0 10px;
}
.cp .cpprof-area .cpprof .blog-area li .pic img {
  max-width: 100%;
}
.cp .cpprof-area .comment {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  margin-top: 10px;
  overflow: hidden;
  width: 100%;
}
.cp .cpprof-area .comment embed {
  width: 100%;
  height: auto;
  display: block;
}
.cp .cpprof-area .comment img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.cp .cpprof-area .comment p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 20px;
  line-height: 2rem;
}
.cp .cpprof-area #tab03 p {
  line-height: 2rem;
  padding: 0 15px;
}
.cp .cpprof-area .report-list {
  margin-bottom: 20px;
}
.cp .cpprof-area .report-list .report-contents {
  width: 96%;
  margin: 0 2%;
}
.cp .cpprof-area .report-list .reply {
  width: 96%;
  margin: 0 2%;
}
.cp .cpprof-area .report-list .heading-2 {
  border-bottom: 1px solid #f8282c;
  padding: 0 0 4px 0;
  margin: 0 0 15px 0;
  position: relative;
  padding-left: 32px;
  height: auto;
  background-image: none;
  line-height: 24px;
}
.cp .cpprof-area .report-list .heading-2:before {
  position: absolute;
  top: 0px;
  left: 2px;
  width: 14px;
  height: 14px;
  background-color: #222222;
  content: "";
}
.cp .cpprof-area .report-list .heading-2:after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  background-color: #f65557;
  content: "";
}
.cp .cpprof-area .tag-list li {
  padding: 0 10px 0 10px;
  padding-right: 42px;
}
.cp .cpprof-area .tag-list li span {
  border-radius: 6px;
  background-color: white;
  color: #222222;
  padding: 0 8px;
  position: absolute;
  right: 2px;
  top: 0;
  width: 32px;
  text-align: center;
  line-height: 20px;
  margin-top: 2px;
  display: block;
}
.cp .cpprof-area .qa-area th {
  width: 50%;
}
@media only screen and (max-width: 912px) {
  .cp .cpprof-area .cpprof .prof-info .item .att-time dd span {
    padding: 0;
  }
}
.cp .cpprof-area .movie-area img {
  width: 100%;
}

.mobile .cp .cpprof-area video {
  width: 100%;
}
.mobile .cp .cpprof-area .button {
  width: 90%;
  margin: 0 auto 20px;
}
.mobile .cp .cpprof-area .report-list:last-of-type {
  margin-bottom: 5px;
}
.mobile .cp .cpprof-area .cp-controller {
  width: 94%;
  margin: 0 3% 0px;
}
.mobile .cp .cpprof-area .cp-controller .number-counter {
  width: auto;
}
.mobile .cp .cpprof-area .cp-controller .button {
  width: auto;
}
.mobile .cp .cpprof-area .cp-controller li {
  width: 33%;
}
.mobile .cp .cpprof-area .owl-carousel .item img {
  height: auto;
}
.mobile .cp .cpprof-area .heading-8 + div {
  display: none;
}
.mobile .cp .cpprof-area .area {
  width: 96%;
  margin: 0 2%;
}
.mobile .cp .cpprof-area .area .heading-8 {
  padding: 10px;
}
.mobile .cp .cpprof-area #tab03 p {
  display: inline-block;
}
.mobile .cp .cpprof-area #tab06 .area .heading-8 {
  padding: 0;
}
.mobile .cp .cpprof-area .property-spec {
  width: 94%;
  margin: 0 3%;
}
.mobile .cp .cpprof-area .property-spec tr {
  display: block;
}
.mobile .cp .cpprof-area .property-spec td {
  float: left;
  width: 70%;
  border: 1px dotted #222222;
  padding: 10px 5px;
  margin-bottom: 20px;
  display: block;
}
.mobile .cp .cpprof-area .property-spec td:nth-child(odd) {
  width: 30%;
  background-color: #c8c8c8;
  border-right: none;
}
.mobile .cp .cpprof-area .cpprof .today-time {
  width: 94%;
  margin: 0 3% 10px;
}
.mobile .cp .cpprof-area .cpprof .today-time span {
  padding: 2px 10px;
}
.mobile .cp .cpprof-area .cpprof .kouyaku-area {
  background-color: white;
}
.mobile .cp .cpprof-area .cpprof .kouyaku-area ul {
  margin: 5px 2% 15px;
}
.mobile .cp .cpprof-area .cpprof .kouyaku-area li {
  background-color: #ffea7b;
}
.mobile .cp .cpprof-area .cpprof .prof-visual {
  width: 100%;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .property .info-bg {
  background-color: #f8282c;
  color: white;
  padding: 3px 10px;
  margin: 3px 0;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .property .date {
  width: 35%;
  margin: 3px 1% 3px 0;
  float: left;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .property .bwh {
  width: 64%;
  margin: 3px 0 3px 0;
  float: left;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .ico {
  width: 100%;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .ico li {
  width: 16.66667%;
  float: left;
  padding-right: 2px;
}
.mobile .cp .cpprof-area .cpprof .prof-visual .ico li img {
  width: 100%;
}
.mobile .cp .cpprof-area .cpprof .button.resserve {
  width: 90%;
  margin: 0 auto 12px;
}
.mobile .cp .cpprof-area .cpprof .prof-info {
  width: 100%;
}
.mobile .cp .cpprof-area .cpprof .movie-area p {
  margin: 10px 4% 10px;
}
.mobile .cp .cpprof-area .cpprof .movie-area a {
  text-decoration: underline;
}
.mobile .cp .cpprof-area .cpprof .blog-area li {
  width: 96%;
  margin: 5px 2%;
}
.mobile .cp .cpprof-area .cpprof .report-contents {
  padding: 10px;
}
.mobile .cp .cpprof-area .cpprof .report-list .title {
  margin-left: 2%;
}
.mobile .cp .cpprof-area .tag-list th,
.mobile .cp .cpprof-area .individual_list th {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.mobile .cp .cpprof-area .tag-list tr,
.mobile .cp .cpprof-area .individual_list tr {
  margin: 0 0 5px 0;
  border: 1px solid #222222;
}
.mobile .cp .cpprof-area .tag-list .normal-tbl,
.mobile .cp .cpprof-area .individual_list .normal-tbl {
  border: none;
}
.mobile .cp .cpprof-area .tag-list p a,
.mobile .cp .cpprof-area .individual_list p a {
  text-decoration: underline;
}
.mobile .cp .cpprof-area .tag-list td:nth-child(even),
.mobile .cp .cpprof-area .individual_list td:nth-child(even) {
  width: 100%;
}
.mobile .cp .cpprof-area .table-list ul {
  margin: 5px 2% 15px;
}
.mobile .cp .cpprof-area .tag-list li {
  width: 47%;
  margin-right: 1%;
}
.mobile .cp .cpprof-area .tag-list li:nth-child(even) {
  margin-right: 0;
}
.mobile .cp .cpprof-area .tag-list p,
.mobile .cp .cpprof-area .individual_list p {
  padding: 7px 2% 10px;
}
.mobile .cp .cpprof-area .option_play {
  width: 96%;
  margin: 0 2%;
}
.mobile .cp .cpprof-area .option_play li {
  font-size: 12px;
  font-size: 1.2rem;
}
.mobile .cp .cpprof-area .option_play .fee {
  text-align: center;
}
.mobile .cp .cpprof-area .cpprof {
  margin-bottom: 0;
}

.desktop .cpprof-area .cpprof .option_play li .sp_preview {
  display: none;
}

.tablet .cp .owl-carousel .item img {
  height: auto;
}
@media screen and (min-width: 600px) {
  .tablet .cp .today-time {
    width: 100%;
  }
  .tablet .cp .cpprof-area .cp-controller {
    width: 100%;
  }
  .tablet .cp .cpprof-area .cp-controller li {
    width: 33.3%;
  }
  .tablet .cp .cpprof-area .cp-controller .button, .tablet .cp .cpprof-area .cp-controller .number-counter {
    width: auto;
  }
}

.slide_menu_toggle-left {
    right: initial;
    left: 5px;
}
.slide_menu-btn, .fix_menu-btn {

    position: absolute;
    display: table;
    background-color: #f8282c;
    width: 54px;
    height: 54px;
    border-radius: 4px;
    text-align: center;
    top: 5px;
    margin: 0px 5px 0 0;

}
.slide_menu_toggle-left::before {

    content: "TOP";
    color: white;

}
.slide_menu-btn::before, .fix_menu-btn::before {

    display: table-cell;
    width: 100%;
    height: 100%;
    background-size: contain;
    vertical-align: middle;

}

.headerinfo .shop-phone {

    width: 54%;
    text-align: center;
    position: relative;
    top: 5px;
    left: 23%;

}

.headerinfo .shop-phone a {

    display: block;
    width: 100%;
    color: white;
    padding: 5px 0;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #f8282c;
    border-radius: 4px;

}
.headerinfo .shop-phone a::before {

    position: absolute;
    top: 15px;
    left: 8px;

}
.headerinfo .shop-phone a::before {

    content: "\F095";
    font-family: "FontAwesome";
    font-size: 26px;
    font-size: 2.6rem;
    padding: 4px 0;
        padding-right: 0px;
    color: white;
    padding-right: 10px;

}

.heading-8.btn-tgl {
    background-color: #f8282c;
}
.item .att-time dt {
    background-color: #c8c8c8;
    color: #222222;
}
.today-item .att-time dt {
    background-color: #f8282c;
    color: white;
}