
/* ----------------------------------------
// adjustment 
// 基本的にcssは利用しないが、どうしても微調整が必要な場合、使用する
// ---------------------------------------- */
/*
@media (max-width: 1280px) { }
@media (max-width: 1199px) { }
@media (max-width: 1024px) { }
@media (max-width: 991px) { }
@media (max-width: 768px) { } -> ipad
@media (max-width: 575px) { }
@media (max-width: 479px) { }
@media (max-width: 380px) { } 
@media (max-width: 350px) { }
@media (max-width: 320px) { }
*/

/* ----------------------------------------------------------- */
/* disp */
/* ----------------------------------------------------------- */
.disp-pc {
  display: block !important;
}
@media (max-width: 767px) { 
  .disp-pc {
    display: none !important;
  }
}
.disp-sp {
  display: none !important;
}
@media (max-width: 767px) { 
  .disp-sp {
    display: block !important;
  }
}

.disp-pc-991,
.disp-pc-768,
.disp-pc-575,
.disp-pc-479,
.disp-pc-380,
.disp-pc-350 {
  display:block;
}
.disp-sp-991,
.disp-sp-768,
.disp-sp-575,
.disp-sp-479,
.disp-sp-380,
.disp-sp-350 {
  display:none;
}
@media (max-width: 991px) { 
  .disp-pc-991 {
    display:none;
  }
  .disp-sp-991 {
    display:block;
  }
}
@media (max-width: 768px) { 
  .disp-pc-768 {
    display:none;
  }
  .disp-sp-768 {
    display:block;
  }
}
@media (max-width: 575px) { 
  .disp-pc-575 {
    display:none;
  }
  .disp-sp-575 {
    display:block;
  }
}
@media (max-width: 479px) { 
  .disp-pc-479 {
    display:none;
  }
  .disp-sp-479 {
    display:block;
  }
}
@media (max-width: 380px) { 
  .disp-pc-380 {
    display:none;
  }
  .disp-sp-380 {
    display:block;
  }
}
@media (max-width: 350px) { 
  .disp-pc-350 {
    display:none;
  }
  .disp-sp-350 {
    display:block;
  }
}

/* ----------------------------------------------------------- */
/* attr, sup */
/* ----------------------------------------------------------- */
.attr, attr {
  font-size: 13px;
  /* color: #000; */
  /* font-weight: 600; */
  /* margin: 5px 0px; */
  display: inline-block;
  line-height: 0.2rem;
}
.attr-title {
  font-size: 13px;
  color: #000;
  font-weight: normal;
  margin: 5px 0px;
  display: inline-block;
  line-height: 14px;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -4px; /* 上付け */
}
sub {
  bottom: -4px; /* 下付け */
}


/* ----------------------------------------------------------- */
/* loader */
/* ----------------------------------------------------------- */
.loader {
  /* position: absolute; */
  left: 0;
  top: 0;
  right: 0;
  bottom: 56px;
  opacity:0.3;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: opacity .3s, visibility 0s .3s;
  transition: opacity .3s, visibility 0s .3s;
  z-index: 1000;
  pointer-events: none;
}
.loader:after {
  display: block;
  content: '';
  position: absolute;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color .1s;
  transition: border-color .1s;
  -webkit-animation-name: preloader-animation;
          animation-name: preloader-animation;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  left: calc(50% - 65px);
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 50px;
  z-index: 1000;
}
.loader-all {
  color: #fff;
  z-index: 100000;
  font-size: 22px;
  position: fixed;
  margin: 0px 30px;
}
.load-wrap {
  position: relative;
}
.load-mes {
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}
[data-nowload="on"]{
  position: relative !important;
}

/* ----------------------------------------------------------- */
/* animations */
/* ----------------------------------------------------------- */
@-webkit-keyframes preloader-animation {
  from {
      -webkit-transform: rotateZ(0deg);
              transform: rotateZ(0deg);
  }
  to {
      -webkit-transform: rotateZ(360deg);
              transform: rotateZ(360deg);
  }
}
@keyframes preloader-animation {
  from {
      -webkit-transform: rotateZ(0deg);
              transform: rotateZ(0deg);
  }
  to {
      -webkit-transform: rotateZ(360deg);
              transform: rotateZ(360deg);
  }
}

/* ----------------------------------------------------------- */
/* modal */
/* ----------------------------------------------------------- */
.modal-area {
  display: none;
  position: fixed;
  z-index: 10; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modal-wrap {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  height: 50%;
  padding: 0px;
  background-color: #fff;
}
.modal-close {
  position: absolute;
  top: -50px;
  right: 0px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: 1000;
}
.modal-contents {
  position: relative;
  padding: 15px 30px;
  overflow-y: scroll;
  height: 100%;
  text-align: center;
}
.modal-contents .title{
  margin-bottom: 10px;
  font-size: 30px;
  text-align: left;
  font-weight: 600;
}
.modal-contents .mes{
  font-size: 20px;
}
.modal-contents #modal-close-btn{
  margin: 50px auto 0px auto;
  padding: 10px 7px;
  border: solid 1px #000;
  border-radius: 5px;
  font-size: 12px;
  position: relative;
  bottom: 20px;
}
.modal-contents .corner{
  margin-right: 7px;
  padding: 2px;
  width: 50px;
  border: solid 1px #000;
  text-align: center;
  display: inline-block;
}
.tx-center{
  text-align:center;
}
.tx-white {
  color: #fff;
}

.tx-black {
  color: #000;
}

.tx-primary {
  color: #0866C6;
}

.tx-success {
  color: #0E8AA0;
}

.tx-warning {
  color: #F49917;
}

.tx-danger {
  color: #dc3545;
}

.tx-info {
  color: #015492;
}

.tx-inverse {
  color: #343a40;
}

.tx-teal {
  color: #00b297;
}

.tx-dark {
  color: #343a40;
}

.tx-indigo {
  color: #6610f2;
}

.tx-purple {
  color: #6f42c1;
}

.tx-orange {
  color: #f27510;
}

.tx-pink {
  color: #e83e8c;
}
.bg-col1 {
  background-color:#546E7A !important; 
}
.bc-col1 {
  border-color:#546E7A !important;
}
.bg-col2 {
  background-color:#6D4C41 !important; 
}
.bc-col2 {
  border-color:#6D4C41 !important;
}
.bg-col3 {
  background-color:#F4511E !important;  
}
.bc-col3 {
  border-color:#F4511E !important;
}
.bg-col4 {
  background-color:#FFB300 !important; 
}
.bc-col4 {
  border-color:#FFB300 !important;
}
.bg-col5 {
  background-color:#7CB342 !important; 
}
.bc-col5 {
  border-color:#7CB342 !important;
}
.bg-col6 {
  background-color:#00897B !important; 
}
.bc-col6 {
  border-color:#00897B !important;
}
.bg-col7 {
  background-color:#039BE5 !important; 
}
.bc-col7 {
  border-color:#039BE5 !important;
}
.bg-col8 {
  background-color:#3949AB !important; 
}
.bc-col8 {
  border-color:#3949AB !important;
}
.bg-col9 {
  background-color:#8E24AA !important; 
}
.bc-col9 {
  border-color:#8E24AA !important;
}
.bg-col10 {
  background-color:#e53935 !important; 
}
.bc-col10 {
  border-color:#e53935 !important;
}

.digi-full-button {
  width: 100% !important;
}
.digi-full-button:first-child {
  border-bottom: none !important;
}
.digi-full-button .digi-under-arrow:before {
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2028%2028%22%20style%3D%22enable-background%3Anew%200%200%2028%2028%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23007083%3B%7D%20.st1%7Bfill%3Anone%3Bstroke%3A%23FFFFFF%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3Ccircle%20class%3D%22st0%22%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%2F%3E%3Cpath%20class%3D%22st1%22%20d%3D%22M17.6%2C15.1l-3.4%2C3.4%22%2F%3E%3Cpath%20class%3D%22st1%22%20d%3D%22M10.8%2C15.1l3.4%2C3.4%22%2F%3E%3Cpath%20class%3D%22st1%22%20d%3D%22M14.2%2C10v7.9%22%2F%3E%3C%2Fsvg%3E') !important;
}

.warning-wrap {
  width: 100%;
  text-align: center;
}
.warning-img-product-cate {
  width: 100%;
  max-width: 350px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: -30px;
}
.warning-img-product-list {
  width: 100%;
  max-width: 350px;
  text-align: center;
  margin-top: 33px;
  margin-bottom: -20px;
}
.warning-img-product-detail {
  width: 100%;
  max-width: 350px;
  text-align: center;
  position: relative;
  top: 0.4rem;
}
.warning-img-special {
  width: 100%;
  max-width: 350px;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 0px;
}
.svg-btn-right {
  fill: #fff;
  position: absolute;
  top: 25px;
  right: 10px;
}
.png-btn-right {
  width: 13px;
  position: absolute;
  top: 20px;
  right: 10px;
}
.png-btn-bottom {
  position: absolute;
  width: 13px;
  top: 20px;
  right: 10px;
}
.png-btn-bottom2 {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 18px;
}
.png-btn-bottom3 {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 18px;
}
.com {
  position:relative;
  top:-8px;
  font-size:8px;
  margin-right:2px;
  display: inline-block;
}
.min {
  position:relative;
  top:0px;
  margin-left:5px;
  font-size:8px;
  display: inline-block;
}

#pr-prodetail .col-12 .prhead2 {
  font-size: .18rem;
  font-weight: 700;
  line-height: 160%;
  margin-top: 0.04rem;
}
#pr-prodetail .col-12 .prdetail {
  font-weight: normal;
}
#pr-prodetail .col-12 .prdetail2 {
  font-weight: normal;
}

#set-prodetail tbody td:first-child[rowspan] {
  background-color: #fff !important;
}

.productCard__title .-model {
  word-break: break-all !important;
}

.product-pcScrollTable tbody:nth-child(1) td.datatable_top:has(img) {
  padding-top: 30px;
}

.pageTitleA small{
  font-size: 0.2rem;
  display: block;
  line-height: 0.3rem;
}


.acchead1 {
  width: 95%;
  margin: 0px auto 20px auto;
  color: #fff;
  background-color: #666;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}
.acchead2 {
  width: 95%;
  margin: 0px auto 20px auto;
  color: #666;
  background-color: #fff;
  border: solid 1px #666;
  border-radius: 0px;
  cursor: pointer;
}
.acchead3 {
  color: #fff;
  background-color: #999;
  width: 97%;
  margin: 3px auto;
  text-align: center;
  border-radius: 0px;
  cursor: pointer;
}
.acchead4 {
  color: #666;
  background-color: #fff;
  border: solid 1px #999;
  width: 100%;
  margin: 3px auto;
  text-align: center;
  border-radius: 0px;
  cursor: pointer;
}
.acchead3>div,
.acchead4>div {
  position: relative;
  padding:10px;
}
.acchead4>div {
  color: #000;
}
.acchead3 em {
  position: absolute;
  font-style: normal;
  top: 13px;
  right: 15px;
  color: #fff;
  font-size: 12px;
}
.acchead4 em {
  position: absolute;
  font-style: normal;
  top: 13px;
  right: 15px;
  color: #000;
  font-size: 12px;
}
.accdetail1 {
  color: #666;
  background-color: #fff;
  border-bottom: solid 1px #666;
  margin-bottom: 5px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.accdetail2 {
  color: #666;
  background-color: #fff;
  border-bottom: solid 1px #666;
  margin-bottom: 5px;
  padding-left: 10px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.accdetail1 div,
.accdetail2 div {
  padding: 3px;
}
.accdisp {
  padding:10px 5px !important;
}
.accdispall,
.accdispone {
  padding:5px 10px !important; 
}
.accdispall div,
.accdispone div{
  width:100%;
}
.accdispall div>div:nth-child(1){
  display:inline-block;
  white-space: nowrap;
  width:40%;
  overflow: hidden;
}
.accdispall div>div:nth-child(2){
  display:inline-block;
  white-space: nowrap;
  width:60%;
  padding-left: 15px;
  overflow: hidden;
}
.accdispone div>div:nth-child(1){
  display:inline-block;
  /* white-space: nowrap; */
  width:100%;
  margin-bottom: 5px;
  overflow: hidden;
}
.accchkbox {
  color:#000;
  padding-right: 0px;
}
.accchkbox input[type="checkbox"]{
  width: 30px;
  display: inline-block;
}
.accchkbox input[type="text"]{
  width: auto;
  display: inline-block;
}
.accchkbox label{
  position:relative;
  top: -15px;
  left: 0px;
  color:#000;
  letter-spacing: -1.5px;
  font-size:14px;
}
.accpref {
  font-size:17px;
  color:#000;
  background: #efefef;
  border-top: #999 solid 1px;
  border-left: #999 solid 1px;
  border-right: #999 solid 1px;
  border-bottom: #999 solid 1px;
  cursor:pointer;
}
.accpref span {
  margin-left:20px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.accpref em {
  position: absolute;
  top: 18px;
  right: 15px;
  color: #000;
  font-size: 12px;
  font-style: normal;
}
.accpref:first-child {
  border-top: #999 solid 1px;
}
.accprefd {
  padding:5px 5px !important;
  border-left: #999 solid 1px;
  border-right: #999 solid 1px;
  cursor: pointer;
}
.accprefd .on {
  position: relative;
  background-color: #e52e2e;
  color: #fff;
}
.accprefd .on::before {
  content: " ";
  position: absolute;
  background-image: url("../img/icon/check_w.png");
  background-size: cover;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  right: 10px;
}
.accprefd div:last-child {
  border-top: none;
}
.accprefd div {
  display:inline-block;
  height: 50px;
  padding-top: 12px;
  padding-left: 20px;
  border-bottom: dotted 1px #999;
  letter-spacing: 0.2em;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.accprefd>div>span {
  margin-left:10px;
}
.mesHead {
  margin-bottom: 5px;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  background: rgba(41,155,149,1.00);
}
.mesDetail {
  margin-bottom: 20px;
  font-size: 12px;
  padding: 20px;
  color: #000;
  background: #efefef;
}
.block-attention {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #000;
}

/*
// .dtlist-wrap
*/
.dtlist-wrap {
  width:100%;
  position:relative;
  border: solid 2px #fff;
  text-align: left;
}
html:not([data-app="on"]) .dtlist-wrap:not(.nohover):hover{
  background-color:#fff;
  opacity: 0.5;
  /*-webkit-box-shadow: 0 0 0 1px #0E8AA0 inset; */
  /* box-shadow: 0 0 0 1px #0E8AA0 inset; */
  /* -webkit-transition-duration: .3s; */
  /* transition-duration: .3s; */
  /* border-bottom: solid 2px #0E8AA0; */
}
.dtlist-card {
  position: relative;
  padding: 1px;
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-bottom:solid 1px #ccc;
}
.dtlist-icon {
  position:relative;
  top:0px;
  left:0px;
}
.dtlist-card__info {
  width: 70px;
  padding: 14px 30px 42px 0;
  padding: 10px 5px 15px 0px;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dtlist-card__logo {
  width: 30px;
  padding: 5px 0px 0px 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  z-index:2;
}
.dtlist-card__logo img{
  width: 40px;
  margin-bottom: 5px;
}
.dtlist-card__image {
  width: 120px;
  padding: 5px 0px 0px 30px;
  margin: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.dtlist-card__image img {
  max-width: 90px;
  max-height: 90px;
}
.dtlist-card__map {
  position:absolute;
  top:0px;
  right:10px;
}
.dtlist-date {
  color: #00A0E9;
  font-size:13px;
}
.dtlist-title {
  max-width: 180px;
  font-size:15px;
  font-weight:600;
  white-space: nowrap;
  overflow: hidden;
}
.dtlist-office {
  font-size:18px;
  overflow: hidden;
}
.dtlist-address-top {
  border-left: solid 5px #ff0000;
  padding-left: 10px;
  font-weight: normal;
  margin:20px auto;
}
.dtlist-arrow {
  position:absolute;
  top: 50px;
  right: -10px;
}
.dtlist-address {
  width: 102%;
  margin: 5px 0px;
  font-size: 13px;
  overflow: hidden;
}
.dtlist-comment {
  width: 102%;
  margin: 2px 0px 5px 0px;
  font-size: 13px;
  color: #ff0000;
  overflow: hidden;
}
.dtlist-position {
  margin-top:10px;
  font-size:15px;
  font-weight:600;
  overflow: hidden;
}
.dtlist-position img{
  width:20px;
  margin-right:10px;
}
.dtlist-location-title1 {
  width: 75%;
  font-size:17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.dtlist-location-title2{
  width: 75%;
  margin-top: -4px;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}
.dtlist-location-office{
  margin-bottom:10px;
}
.dtlist-location-office span{
  font-size:20px;
  border-bottom: 3px solid rgba(45,163,190,1.00);
}
.dtlist-location-kind{
  position: relative;
  width: 150px;
  margin: auto;
  right: 0px;
  top: 0px;
  display: inline-block;
  padding: 0px 5px;
  border: 1px solid rgba(45,163,190,1.00);
  font-size: 10px;
  text-align: center;
  color: rgba(45,163,190,1.00);
  background-color: rgba(195,235,235,1.00);
  margin-bottom: 10px;
}
.dtlist-location-field{
  margin-bottom:5px;
}
.dtlist-location-field span{
  font-size:15px;
  font-weight:600;
  border-bottom: 3px solid rgba(45,163,190,1.00);
}
.dtlist-detail {
  max-width: 180px;
  font-size:13px;
  overflow: hidden;
}
.dtlist-icon-location {
  position:absolute;
  top: 10px;
  right: 10px;
}
@media (max-width: 320px) { 
  .dtlist-icon-location {
    top:17px;
    right:30px;
  }
}
.dtlist-icon-location img{
  width: 50px;
}
@media (max-width: 320px) { 
  .dtlist-icon-location img{
    width: 40px;
  }
}

.dtlist-icon-on {
  width:25px !important;
  position:relative;
  top:-2px;
  border: solid 1px #000;
  border-radius: 5px;
  background-color: #000;
  display:inline-block !important;
}
.dtlist-icon-off {
  width:25px !important;
  position:relative;
  top:-2px;
  border: solid 1px #ddd;
  border-radius: 5px;
  display:inline-block !important;
}
.dtlist-icon-set {
  width:25px !important;
  position:relative;
  top:-2px;
  display:inline-block !important;
}
.dtlist-icon2-on {
  width:20px !important;
  position:relative;
  top:-2px;
  border: solid 1px #000;
  border-radius: 5px;
  background-color: #000;
  display:inline-block !important;
}
.dtlist-icon2-off {
  width:20px !important;
  position:relative;
  top:-2px;
  border: solid 1px #ddd;
  border-radius: 5px;
  display:inline-block !important;
}
.dtlist-icon2-set {
  width:20px !important;
  position:relative;
  top:-2px;
  display:inline-block !important;
}

#detail-products-title {
  margin: 25px auto 0px auto;
  width: 100%;
  word-break: break-all;
  color:#666;
}
#list-cate-title {
  margin-top:60px;
  color: #666;
  font-size:20px;
  font-weight: 600;
}
/* iosアプリのみ(safariのみ) */
[data-ios10='on'] .list-cate-title {
  margin-top: 100px !important;
}

@media (max-width: 991px) {
  #detail-products-title {
    width: 90%;
  }
}
@media (max-width: 768px) { 
  #detail-products-title {
    width: 80%;
  }
}
@media (max-width: 575px) { 
  #detail-products-title {
    width: 65%;
  }
}


/*
// switch
*/
.switch input {
  position: absolute;
  height: 1px;
  width: 1px;
  background: none;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  padding: 0;
}
.switch input + label {
  position: relative;
  min-width: calc(calc(2.375rem * .8) * 2);
  border-radius: calc(2.375rem * .8);
  height: calc(2.375rem * .8);
  line-height: calc(2.375rem * .8);
  display: inline-block;
  cursor: pointer;
  outline: none;
  user-select: none;
  vertical-align: middle;
  text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
}
.switch input + label::before,
.switch input + label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(calc(2.375rem * .8) * 2);
  bottom: 0;
  display: block;
}
.switch input + label::before {
  right: 0;
  background-color: #dee2e6;
  border-radius: calc(2.375rem * .8);
  transition: 0.2s all;
}
.switch input + label::after {
  top: 2px;
  left: 2px;
  width: calc(calc(2.375rem * .8) - calc(2px * 2));
  height: calc(calc(2.375rem * .8) - calc(2px * 2));
  border-radius: 50%;
  background-color: white;
  transition: 0.2s all;
}
.switch input:checked + label::before {
  background-color: #666;
}
.switch input[data-bg="on"] + label::before {
  background-color: #666 !important;
}
.switch input:checked + label::after {
  margin-left: calc(2.375rem * .8);
}
.switch input:focus + label::before {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, 0.25);
}
.switch input:disabled + label {
  color: #868e96;
  cursor: not-allowed;
}
.switch input:disabled + label::before {
  background-color: #e9ecef;
}
.switch.switch-sm {
  font-size: 0.875rem;
}
.switch.switch-sm input + label {
  min-width: calc(calc(1.9375rem * .8) * 2);
  height: calc(1.9375rem * .8);
  line-height: calc(1.9375rem * .8);
  text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
}
.switch.switch-sm input + label::before {
  width: calc(calc(1.9375rem * .8) * 2);
}
.switch.switch-sm input + label::after {
  width: calc(calc(1.9375rem * .8) - calc(2px * 2));
  height: calc(calc(1.9375rem * .8) - calc(2px * 2));
}
.switch.switch-sm input:checked + label::after {
  margin-left: calc(1.9375rem * .8);
}
.switch.switch-lg {
  font-size: 1.25rem;
}
.switch.switch-lg input + label {
  min-width: calc(calc(3rem * .8) * 2);
  height: calc(3rem * .8);
  line-height: calc(3rem * .8);
  text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
}
.switch.switch-lg input + label::before {
  width: calc(calc(3rem * .8) * 2);
}
.switch.switch-lg input + label::after {
  width: calc(calc(3rem * .8) - calc(2px * 2));
  height: calc(calc(3rem * .8) - calc(2px * 2));
}
.switch.switch-lg input:checked + label::after {
  margin-left: calc(3rem * .8);
}
.switch + .switch {
  margin-left: 1rem;
}


/*
// .filters-button
*/
.filters-button {
  display: flex;
  align-items: center;
  padding: 0 9px;
  height: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  color: inherit;
}

.filters-button:focus {
  outline: none;
}

.filters-button:hover {
  background: #f5f5f5;
  border-color: #e5e5e5;
}

.filters-button__icon {
  fill: #333;
}

[dir=ltr] .filters-button__icon {
  margin-right: 8px;
}

[dir=rtl] .filters-button__icon {
  margin-left: 8px;
}

.filters-button__counter {
  display: block;
  height: 20px;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 5px 0;
  border-radius: 2px;
  line-height: 16px;
  background: #333;
  color: #fff;
}

[dir=ltr] .filters-button__counter {
  margin-left: 12px;
  margin-right: -4px;
}

[dir=rtl] .filters-button__counter {
  margin-right: 12px;
  margin-left: -4px;
}

/*
// .block-header
*/
.block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}

.block-header__title {
  margin: 3px auto 30px auto;
  letter-spacing: 13px;
  font-weight: normal;
  font-size: 20px;
  color: #999;
  text-align: center;
}
/* iosアプリのみ(safariのみ) */
[data-ios10='on'] .block-header__title {
  padding-top: 30px !important;
} 
@media (max-width: 1024px) {
  .block-header__title {
    letter-spacing: 10px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .block-header__title {
    letter-spacing: 5px;
    font-size: 12px;
  }
}

.block-header__realtitle {
  width: 100%;
  color: #D3D3D4;
  text-align: center;
  letter-spacing: 20px;
  font-size: 11px;
  margin-left: 30px;
  font-weight: lighter;
}

.block-header__divider {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
  background: #ebebeb;
}

.block-header__groups-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.block-header__groups-list li + li {
  margin-left: 3px;
}

.block-header__group {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: block;
  color: inherit;
  padding: 2px 11px 1px;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.block-header__group:focus {
  outline: none;
}

.block-header__group:focus, .block-header__group:hover {
  -webkit-box-shadow: 0 0 0 2px #ebebeb inset;
          box-shadow: 0 0 0 2px #ebebeb inset;
  color: inherit;
}

.block-header__group--active, .block-header__group--active:focus, .block-header__group--active:hover {
  cursor: default;
  -webkit-box-shadow: 0 0 0 2px #000 inset;
          box-shadow: 0 0 0 2px #000 inset;
}

.block-header__arrows-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-header__arrow {
  width: 27px;
  height: 29px;
  padding: 0;
  margin: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  fill: #999;
  border-radius: 1.5px;
  background: #f2f2f2;
  -webkit-transition: all .15s;
  transition: all .15s;
}

.block-header__arrow:focus {
  outline: none;
}

.block-header__arrow:focus, .block-header__arrow:hover {
  background: #000;
  fill: #fff;
}

.block-header__arrow:active {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  background: #474747;
  fill: #fff;
}

.block-header__arrow + .block-header__arrow {
  margin-left: 3px;
}

.block-header__arrow svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}


.block-header__arrow--left svg {
  position: relative;
}

.block-header__arrow--left svg {
  left: -1px;
}

.block-header__arrow--right svg {
  position: relative;
}

.block-header__arrow--right svg {
  left: 1px;
}


.block-header__title + .block-header__divider {
  margin-left: 16px;
}

.block-header__divider + .block-header__groups-list {
  margin-left: 12px;
}

.block-header__groups-list + .block-header__arrows-list {
  margin-left: 10px;
}

.block-header__divider + .block-header__arrows-list {
  margin-left: 16px;
}

@media (max-width: 767px) {
  .block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .block-header__groups-list {
    padding: 8px 0;
    margin-top: 8px;
    margin-bottom: -8px;
    -webkit-box-ordinal-group: 101;
        -ms-flex-order: 100;
            order: 100;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .block-header__divider + .block-header__groups-list {
    margin-left: auto;
    margin-right: auto;
  }
  .block-header__divider + .block-header__groups-list + .block-header__arrows-list {
    margin-left: 16px;
  }
}

/*
// .card
*/

.card-body {
  padding: 2rem;
}

.card-header,
.card-footer {
  position: relative;
  padding: 16px;
  border-top: none;
  border-bottom: none;
  border-left: dotted 1px #999;
  border-right: dotted 1px #999;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .card-header,
  .card-footer {
    padding: 15px !important;
  }
}
.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6,
.card-footer h1,
.card-footer h2,
.card-footer h3,
.card-footer h4,
.card-footer h5,
.card-footer h6 {
  margin-bottom: 0;
}

.card-title {
  margin-bottom: 1.75rem;
}

.card-title h1, .card-title h2, .card-title h3, .card-title h4, .card-title h5, .card-title h6 {
  margin-bottom: 0;
}

.card-divider {
  height: 2px;
  background: #f0f0f0;
}

.card-body .card-title:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-header,
  .card-footer {
    padding: 1.25rem 1.5rem;
  }
  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }
  .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-header,
  .card-footer {
    padding: 1rem 1.375rem;
  }
  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }
  .card-body {
    padding: 1.375rem;
  }
}

.collapse:not(.show) {
  display: none;
}

[data-show='on'] {
  display: block;
}

#specialcms-wrap *+.card {
  margin-top: auto !important;
}

/*
// .card-table
*/
.card-table {
  font-size: 15px;
}

.card-table table {
  width: 100%;
  min-width: 500px;
}

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

.card-table thead th {
  border-bottom: 2px solid #f0f0f0;
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 12px;
}

.card-table tbody td {
  padding: 12px 12px;
}

.card-table tbody tr + tr td {
  border-top: 1px solid #f0f0f0;
}

.card-table tbody tr:hover > * {
  background-color: #f7f7f7;
}

.card-table th:first-child, .card-table td:first-child {
  padding-left: 2rem;
}

.card-table th:last-child, .card-table td:last-child {
  padding-right: 2rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-table {
    font-size: 14px;
  }
  .card-table th:first-child, .card-table td:first-child {
    padding-left: 1.5rem;
  }
  .card-table th:last-child, .card-table td:last-child {
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-table {
    font-size: 14px;
  }
  .card-table th:first-child, .card-table td:first-child {
    padding-left: 1.375rem;
  }
  .card-table th:last-child, .card-table td:last-child {
    padding-right: 1.375rem;
  }
}

.tab-pane {
  position: relative;
  padding: 35px 15px 0px 15px;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 1024px) {
  .tab-pane {
    width: 90%;
  }
}

.ico-title {
  position: relative;
  width: 30px !important;
  top: 13px;
}
@media (max-width: 1280px) {
  .ico-title {
    width: 25px !important;
    top: 5px;
  }
}
@media (max-width: 767px) {
  .ico-title {
    width: 40px !important;
    top: -5px;
  }
}

.location-btn {
  margin: 10px auto;
  max-width: 300px;
  width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: #ccc;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.location-btn:hover {
  opacity: 0.8;
}