@charset "UTF-8";


/*  body
-----------------------------------------------------------*/
body {
  min-width: 1120px;
  font-size: 1.6rem;
  color: #222;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  word-wrap: break-word;
}
@media all and (-ms-high-contrast:none){
  img[src$=".svg"] {
    position: relative;
    left: 0.4px;
    top: 0.4px;
  }
}

/*  fade anime
-----------------------------------------------------------*/
@keyframes fade-out {  
  0% {
    visibility: visible;
    opacity: 1;
  }
  50% {
    visibility: visible;
    opacity: .5;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes fade-in {  
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: .5;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

/*  #page_header
-----------------------------------------------------------*/
#page_header {
  margin-bottom: 0;
}
#page_header .str_segment.-local_nav {
  box-shadow: none;
}

/*  .sic__link
-----------------------------------------------------------*/
#contents .sic__link:link,
#contents .sic__link:visited {
	position: relative;
	display: inline-block;
	color: #00b3c8 !important;
}
#contents .sic__link::before {
	content: '';
	position: absolute;
	bottom: 2px;
	width: 100%;
	height: 1px;
	background-color: #00b3c8;
	transform: scale(1, 1);
	transform-origin: right top;
	transition: transform .3s ease;
}
#contents .sic__link:hover::before {
	transform-origin: left top;
	transform: scale(0, 1);
}

/*  .sic__btn
-----------------------------------------------------------*/
.sic__btn,
.sic__btn-off {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  box-sizing: border-box;
  transition: background .3s;
  outline : none;
}
.sic__btn:hover {
  background-color: #f6f6f6;
}

/* btn-reserve */
.sic__btn-reserve .sic__btn,
.sic__btn-list .sic__btn {
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  color: #fff;
  background-color: #e21f00;
  box-shadow: 0px 2px 0.99px 0.01px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 10px;
}
.sic__btn-reserve .sic__btn:hover,
.sic__btn-list .sic__btn:hover {
  background-color: #c91b00;
}

.sic__btn-list .sic__btn::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/ico-arrow-down-white.svg) no-repeat;
  background-size: contain;
}

/* btn-custom */
.sic__btn-custom .sic__btn,
.sic__btn-custom .sic__btn-off {
  height: 38px;
  font-size: 1.3rem;
  color: #222;
}
.sic__btn-custom .sic__btn::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/common/ico-scissors-color.svg) no-repeat;
  background-size: 18px auto;
  margin-right: 6px;
}
.sic__btn-custom .sic__btn-off {
  height: 38px;
  font-size: 1.3rem;
  color: #666;
  background: #bebebe;
}

/* btn-movie,btn-map */ 
.sic__btn-movie .sic__btn,
.sic__btn-map .sic__btn {
  font-size: 1.2rem;
  color: #222;
  padding: 0 9px;
}
.sic__btn-movie .sic__btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico-movie-color.svg) no-repeat;
  background-size: 20px auto;
  margin-right: 9px;
}
.sic__btn-map .sic__btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico-map-color.svg) no-repeat;
  background-size: 20px auto;
  margin-right: 9px;  
}

/* btn-close,btn-more */
.sic__btn-close .sic__btn,
.sic__btn-more .sic__btn {
  justify-content: center;
  width: 200px;
  height: 42px;
  color: #222;
  margin: 0 auto;
}
.sic__btn-close .sic__btn::after,
.sic__btn-more .sic__btn::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/common/ico-close-color.svg) no-repeat;
  background-size: 28px auto;
  margin-left: 9px;
}
.sic__btn-more .sic__btn::after {
  height: 26px;
  background: url(../img/common/ico-open-color.svg) no-repeat;
  background-size: 26px auto;
}

/* btn-cart */
.sic__btn-cart .sic__btn {
  height: 58px;
  font-size: 1.6rem;
  color: #e21f00;
  border: 1px solid #e21f00;
  padding: 0 38px 0 39px; 
  box-shadow: 0px 2px 0.99px 0.01px rgba(0, 0, 0, 0.1); 
}
.sic__btn-cart .sic__btn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico-cart-color.svg) no-repeat;
  background-size: 20px auto;
  margin-right: 9px;
}

/* btn-other */
.sic__btn-other .sic__btn {
  width: 300px;
  height: 40px;
  font-size: 1.3rem;
  color: #222;
  margin: 0 auto;
}

/* pagetop */
.sic__btn-pagetop {
  position: fixed;
  bottom: 8px;
  left: 50%;
  margin-left: 510px;
  visibility: visible;
  animation-duration: .3s;
  animation-name: fade-in;
  z-index: 2;
}
.sic__btn-pagetop.is-hide {
  visibility: hidden;
  animation-duration: .3s;
  animation-name: fade-out;
}
.sic__btn-pagetop .sic__btn {
  display: block;
  width: 50px;
  height: 50px;
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  background-color: transparent;
  border: none;
  border-radius: 0;  
}
.sic__btn-pagetop .sic__btn:hover {
  background: none;
}

/*  .sic__ico
-----------------------------------------------------------*/
.sic__ico {
  position: relative;
  display: inline-block;
  outline : none;
}
.sic__ico::after {
	content: '';
	position: absolute;
  right: 0;
	bottom: 2px;
	width: 100%;
	height: 1px;
	background-color: #404040;
	transform: scale(0, 1);
	transform-origin: left top;
}
.sic__ico:hover::after {
	transform-origin: right top;
	transform: scale(1, 1);
}
.sic__ico-favorite-simple .sic__ico {
  width: 25px;
  height: 25px;
  background: url(../img/common/ico-favorite-simple.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
}
.sic__ico-favorite-simple .sic__ico:hover {
  text-decoration: none;
}
.sic__ico-favorite-simple .sic__ico:hover::after {
  display: none;
}
.sic__ico-favorite-simple .sic__ico.is-active {
  background: url(../img/common/ico-favorite-simple-on.svg) no-repeat;
  background-size: contain;  
}
.sic__ico-favorite-add {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sic__ico-favorite-add .sic__ico {
  font-size: 1.3rem;
  font-weight: bold;
  color: #666;
}
.sic__ico-favorite-add.is-active .sic__ico {
  color: #ff8e00;
}
.sic__ico-favorite-add.is-active .sic__ico::after {
  background-color: #ff8e00;
}

.sic__ico-favorite-add::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/common/ico-favorite-gray.svg) no-repeat;
  background-size: 13px auto;
	padding-bottom: 2px;
  margin-right: 8px;
}
.sic__ico-favorite-add.is-active::before {
  background: url(../img/common/ico-favorite-color.svg) no-repeat;
  background-size: 13px auto;
}
.sic__ico-change-day {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.sic__ico-change-day .sic__ico {
  font-size: 1.4rem;
  color: #222;
}
.sic__ico-change-day::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/ico-arrow-left.svg) no-repeat;
  background-size: 24px auto;
  margin-right: 10px;  
}

.sic__ico-delete .sic__ico {
  display: flex;
  align-content: center;
}
.sic__ico-delete .sic__ico::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico-delete-color.svg) no-repeat;
  background-size: 20px auto;
  margin-right: 9px;  
}

/*  .tag
-----------------------------------------------------------*/
.sic__tag-price {
  display: inline-flex;
  align-items: center;
  height: 17px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #e21f00;
  line-height: 1;
  vertical-align: text-bottom;
  border: 1px solid #e21f00;
  padding: 0 4px;
}
#sic__side .sic__tag-price {
  font-weight: normal;
  padding: 0 3px;
}

/*  .sic__tag
-----------------------------------------------------------*/
.sic__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  background-color: #fff;
  border-radius: 12px;
  margin-right: 5px;
}
.sic__tag img {
  height: 24px;
  width: auto;
}
.sic-detail__tag {
  height: 21px;
  border-radius: 10px;
}
.sic__tag-opt {
  background-color: #61b55b;
}
#sic__side .sic__tag {
  font-weight: normal;
}

/*  .sic__label
-----------------------------------------------------------*/
.sic__label {
  display: flex;
  align-items: center;
  height: 20px;
  line-height: 1;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 5px;
  box-sizing: border-box;  
}
.sic__label img {
  height: 20px;
  width: auto;
}

.sic__label-sale,
.sic__label-confirm {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  color: #e21f00;
  background-color: #fff;
  border: 1px solid #e21f00;
  border-radius: 10px;
  padding: 0 8px;
  margin-right: 5px;
  box-sizing: border-box;
}
.sic__label-confirm {
  color: #00b3c8;
  border-color: #00b3c8;
}

/*  .sic-detail__label
-----------------------------------------------------------*/
.sic-detail__ttl {
  font-weight: bold;
}

/*  #sic__breadcrumb
-----------------------------------------------------------*/
#sic__breadcrumb {
	width: 100%;
	background-color: #f6f6f6;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 104px;
}
#sic__breadcrumb .sic-detail__list {
	width: 1120px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 8px 0;
}
#sic__breadcrumb .sic-detail__list-item {
  color: #666;
	background: url(../img/common/ico-breadcrumb.svg) no-repeat right center;
	background-size: 8px auto;
	padding-right: 16px;
	margin-right: 6px;
}
#sic__breadcrumb .sic-detail__list-item:last-child {
	background: none;
	margin-right: 0;
	padding-right: 0;
}

/*  #sic-header
-----------------------------------------------------------*/
#sic-header {
  position: absolute;
  top: 178px;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: #fff;
	border-bottom: 1px solid #ececec;
}
#sic-header.sic__no-bread {
  top: 159px;
}
#sic-header.sic__header-btm {
  top: 206px;
}
#sic-header.sic__fixed {
  position: fixed;
  top: 0;
  z-index: 10;
}
#sic-header .sic-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1120px;
	height: 74px;
	margin: 0 auto;
}
#sic-header .sic-header__logo {
  display: flex;
  align-items: flex-start;
}
#sic-header .sic-header__logo img {
  vertical-align: top;
}
#sic-header .sic-header__logo p {
  line-height: 1;
  padding-top: 13px;
  margin-left: 16px;
}
#sic-header .sic-header__logo p a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
#sic-header .sic-header__logo a {
  transition: opacity .3s;
}
#sic-header .sic-header__logo a:hover {
  opacity: .8;
}
.sic-header__btn-box {
	display: flex;
}
#sic-header .sic__btn-custom .sic__btn {
  height: 35px;
  font-size: 1.2rem;
  padding: 0 7px 0 14px
}
#sic-header .sic__btn-favorite .sic__btn {
  height: 35px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #ff8e00;
  border: none;
  padding: 0 15px;
}
#sic-header .sic__btn-favorite {
  margin-left: 10px;
}
#sic-header .sic__btn-favorite .sic__btn:hover {
  background-color: #e67e00;
}
#sic-header .sic__btn-favorite .sic__btn::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url(../img/common/ico-favorite-white.svg) no-repeat;
  background-size: 13px auto;
	padding-bottom: 2px;
  margin-right: 8px;
}
#sic-header .sic__btn-favorite .sic__btn-num {
  display: flex;
  align-items: center;
  height: 15px;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
  background-color: #00adc7;
  padding: 0 4px;
  margin-left: 5px;
}

/* btn-cart */
#sic-header .sic__btn-cart {
  margin-left: 10px;
}
#sic-header .sic__btn-cart .sic__btn {
  height: 35px;
  font-size: 1.3rem;
  color: #fff;
  background-color: #e21f00;
  border: none;
  padding: 0 18px 0 12px;  
}
#sic-header .sic__btn-cart .sic__btn:hover {
  background-color: #c91b00;
}
#sic-header .sic__btn-cart .sic__btn::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/common/ico-cart-white.svg) no-repeat;
  background-size: 16px auto;
  margin-right: 9px;
}


/*  #contents
-----------------------------------------------------------*/
#contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1120px;
  padding: 0;
  position: relative;
}

/*  #sic__main
-----------------------------------------------------------*/
#sic__main {
  width: 800px;
}

/*  #sic__side
-----------------------------------------------------------*/
#sic__side {
  width: 290px;
  visibility: visible;
  animation-duration: .3s;
  animation-name: fade-in;
}
#sic__side.sic__fixed {
  position: fixed;
  z-index: 10;
  top: 104px;
  left: 50%;
  margin-left: 270px;
}
#sic__side.is-hide {
  visibility: hidden;
  animation-duration: .3s;
  animation-name: fade-out;
}
#sic__side.is-hide table {
  visibility: hidden;
  animation-duration: .3s;
  animation-name: fade-out;  
}
@media screen and (max-width: 1120px) {
  
  #sic__side.sic__fixed {
    left: 830px;
    margin-left: 0;
  }
}
.sic__side-table-box {
  position: relative;
  max-height: 1000px;
  padding-bottom: 20px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all .3s;
}
.sic__side-table-box.sic__block--hide {
  max-height: 113px;
}
.sic__side-table-box .sic__btn-more,
.sic__side-table-box .sic__btn-close {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -100px;
  z-index: 2;
}
.sic__side-table-box.sic__block--hide::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background:linear-gradient(rgba(255,255,255,0), #fff 66%);
}

/*  .sic__price-box
-----------------------------------------------------------*/
.sic__price-box {
  background-color: #ffeeca;
  padding: 18px 20px;
  margin-bottom: 20px;
  position: relative;
}
.sic__price-box_tooltip {
  position: absolute;
  z-index: 20;
  top: -25px;
  left: 35px;
  width: 220px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #666;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.sic__price-box_tooltip:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #666666 transparent transparent transparent;
  position: absolute;
  left: 112px;
  top: 40px;
}
.sic__price-box_tooltip.is-show {
  -webkit-animation: toggleFade 4s linear 1s;
          animation: toggleFade 4s linear 1s;
}

@-webkit-keyframes toggleFade {
  0% {
    top: -25px;
    opacity:0;
  }
  10% {
    top: -35px;
    opacity:1;
  }
  90% {
    top: -35px;
    opacity:1;
  }
  100% {
    top: -25px;
    opacity:0;
  }
}

@keyframes toggleFade {
  0% {
    top: -25px;
    opacity:0;
  }
  10% {
    top: -35px;
    opacity:1;
  }
  90% {
    top: -35px;
    opacity:1;
  }
  100% {
    top: -25px;
    opacity:0;
  }
}

.sic__price-box .sic__btn-box {
  background-color: #fff9ec;
  padding: 16px 15px;
  box-sizing: border-box;
  margin-top: 12px;
}
.sic__txt-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sic__txt-price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sic__txt-strike {
  font-weight: bold;
  color: #222;
  line-height: 1;
  margin-left: 5px;
}
#sic__side .sic__txt-strike {
  font-size: 1.2rem;
}
.sic__txt-num,
.sic__txt-num--off,
.sic__txt-total {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  margin-left: 5px;
}
.sic__txt-num--off {
  color: #e21f00;
}
.sic__txt-strike .sic__txt-yen {
  font-size: 1.2rem;
}
.sic__txt-dai {
  font-size: 1.6rem;
  font-weight: normal;
  margin-left: 3px;
}
#sic__side .sic__txt-strike .sic__txt-yen {
  font-size: 1.4rem;
}
.sic__txt-num .sic__txt-yen,
.sic__txt-num--off .sic__txt-yen,
.sic__txt-num .sic__txt-total {
  font-size: 1.6rem;
}
#sic__side .sic__txt-num--off .sic__txt-yen {
  font-size: 1.4rem;
}
.sic__txt-strike::after,
.sic__txt-num::after,
.sic__txt-num--off::after {
  content: '~';
}
#sic__side .sic__txt-num--off::after {
  font-size: 2rem;
}

#sic__side .sic__txt-strike::after,
#sic__side .sic__txt-num::after,
#sic__side .sic__txt-num--off::after {
  display: none;
}
#sic__side .sic__txt-yen::after {
  content: '~';
  font-size: 2.2rem;
}
.sic__txt-num .sic__txt-total {
  margin-right: 10px;
}

.sic__price-box .sic__ico-favorite-add,
.sic__price-box .sic__ico-favorite-remove{
  padding: 18px 0 0;
}
.sic__price-box .sic__btn-list + .sic__ico-favorite-add,
.sic__price-box .sic__btn-list + .sic__ico-favorite-remove {
  padding: 5px 0 0;
}

.sic-detail__txt-strike {
  color: #999;
}

#sic__main .sic-detail__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 740px;
  padding-bottom: 60px;
  margin: 0 auto;
}


/*  #sic__modal-box
-----------------------------------------------------------*/
#sic__modal-box {
  display: none;
}

/*  .sic__calendar modal
-----------------------------------------------------------*/
#sic__modal-calendar,
#sic__modal-calendar-number {
  padding: 30px 60px;
}
.sic__calendar,
.sic__calendar-number {
  width: 600px;
}
.sic__calendar-step {
  display: flex;
  width: 600px;
}
.sic__calendar-step .sic__item::before,
.sic__calendar-step .sic__item--cr::before {
  content: '1';
  font-family: Helvetica,Arial,"sans-serif";
  font-size: 2.2rem;
  margin-right: 14px;
}
.sic__calendar-step .sic__item:nth-child(2)::before,
.sic__calendar-step .sic__item--cr:nth-child(2)::before {
  content: '2';
}
.sic__calendar-step .sic__item,
.sic__calendar-step .sic__item--cr {
  width: 300px;
  height: 37px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  color: #bebebe;
  text-align: center;
  border-bottom: 3px solid #bebebe;
  box-sizing: border-box;
}
.sic__calendar-step .sic__item--cr {
  color: #00b3c8;
  border-bottom: 6px solid #00b3c8;
}
.sic__calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 22px 0 12px;
}
.sic__calendar-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #222;
  margin: 0 9px;
}
.sic__calender-btn-prev,
.sic__calender-btn-next {
	font-size: 1rem;
  width: 32px;
}
.sic__calender-link {
  display: block;
  width: 32px;
  line-height: 1;
}
.sic__calender-link .sic__img {
  width: 32px;
  height: 32px;
}
.sic__calendar-table,
.sic__calendar-number-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.sic__calendar-th,
.sic__calendar-td {
  width: 14.2%;
  border: 1px solid #dfdfdf;
}
.sic__calendar-number .sic__calendar-th,
.sic__calendar-number .sic__calendar-td {
  width: 25%;
}
.sic__calendar-number .sic__calendar-th {
  height: 39px;
  font-size: 1.4rem;
}
.sic__calendar-number .sic__calendar-td,
.sic__calendar-number .sic__calendar-td-age {
  height: auto;
  font-size: 1.4rem;
  font-weight: normal;
  color: #222;
  text-align: right;
  vertical-align: middle;
  background-color: #fff;
  padding: 7px 15px;
}
.sic__calendar-number .sic__calendar-td.sic__td-select {
  padding: 0;
}
.sic__calendar-number .sic__calendar-td.sic__td-select .sic__calendar-td-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
.sic__calendar-number .sic__select { 
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  
  position: relative;
  height: 100%;
  min-height: 38px;
  font-size: 1.4rem;
  text-align: right;
  padding: 7px 54px 7px 15px;
  z-index: 2;
}
.sic__calendar-number .sic__select::-ms-expand {
    display: none;
}
.sic__calendar-number .sic__label-select {
  position: relative;
  display: block;
  min-height: 38px;
}
.sic__calendar-number .sic__label-select::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  width: 24px;
  height: 24px;
  background: url(../img/common/ico-arrow-down.svg) no-repeat right center;
  background-size: 24px auto;
  margin-top: -11px;
}
.sic__calendar-number .sic__calendar-td.sic__td-select .sic__calendar-td-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: #f6f6f6;
}
.sic__calendar-number .sic__calendar-td.sic__td-select .sic__calendar-td-box.is-hover::before {
  background-color: #ffcbc2;
}
.sic__calendar-td-total,
.sic__calendar-td-total-price {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
  background-color: #fff9ec;
  border: 1px solid #dfdfdf;
  padding: 7px 15px;
}
.sic__calendar-td-total-price {
  font-size: 1.6rem;
}
.sic__calendar-number .sic__calendar-td-age {
  text-align: left;
  border: 1px solid #dfdfdf;
}
.sic__calendar-number-ttl {
  font-size: 2rem;
  font-weight: bold;
  padding: 22px 0 12px;
}
.sic__calendar-th {
  height: 28px;
  font-size: 1.4rem;
  color: #222;
  background-color: #effafb;
  text-align: center;
  vertical-align: middle;
}
.sic__calendar-table .sic__calendar-th:first-child {
  color: #e21f00;
}
.sic__calendar-table .sic__calendar-th:last-child {
  color: #00b3c8;
}
.sic__calendar-td,
.sic__calendar-td--pickable,
.sic__calendar-td--cr {
  height: 60px;
  font-weight: bold;
  color: #bebebe;
  background-color: #eee;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}
.sic__calendar-td--pickable .sic__modal,
.sic__calendar-td--cr .sic__modal,
.sic__calendar-td--pickable .sic__modal-pickable,
.sic__calendar-td--cr .sic__modal-pickable {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 59px;
  color: #666;
  padding: 7px;
  box-sizing: border-box;
}
.sic__calendar-td--pickable {
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #dfdfdf;
}
.sic__calendar-td-box {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 7px;
  box-sizing: border-box;
}
.sic__calendar-td--pickable .sic__modal-pickable:hover,
.sic__calendar-td--pickable .sic__link:hover {
  background-color: #ffd1c9;
}
.sic__calendar-today {
  color: #666;
  background-color: #fff9ec;
}
.sic__calendar-day,
.sic__calendar-day--request,
.sic__calendar-day--no,
.sic__calendar-day--ok,
.sic__calendar-day--few {
  position: relative;
  font-size: 2.2rem;
  line-height: 1;
}
.sic__calendar-day--request::before,
.sic__calendar-day--no::before,
.sic__calendar-day--ok::before,
.sic__calendar-day--few::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
}
.sic__calendar-day--request::before {
  background: url(../img/common/ico-cal-rect.svg) no-repeat right top;
  background-size: 22px auto;
}
.sic__calendar-day--no::before {  
  background: url(../img/common/ico-cal-cross.svg) no-repeat right top;
  background-size: 22px auto;
}
.sic__calendar-day--ok::before {  
  background: url(../img/common/ico-cal-circle.svg) no-repeat right top;
  background-size: 22px auto;
}
.sic__calendar-day--few::before {  
  background: url(../img/common/ico-cal-tri.svg) no-repeat right top;
  background-size: 22px auto;
}
.sic__calendar-price {
  font-size: 1.4rem;
  color: #222;
  line-height: 1;
  padding-top: 10px;
}
.sic__calendar-price-yen {
  font-size: 1.2rem;
}
.sic__calendar-list {
  display: flex;
  width: 100%;
  height: 30px;
  font-size: 1.4rem;
  color: #222;
  background-color: #f6f6f6;
  padding: 6px 0 0 9px;
  margin: 9px 0 15px;
  box-sizing: border-box;
}
.sic__calendar-list--ok,
.sic__calendar-list--no,
.sic__calendar-list--request,
.sic__calendar-list--few {
  margin-right: 18px;
}
.sic__calendar-list--ok::before,
.sic__calendar-list--no::before,
.sic__calendar-list--request::before,
.sic__calendar-list--few::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/common/ico-cal-circle.svg) no-repeat;
  background-size: 22px auto;
  vertical-align: top;
  margin-right: 8px;
}
.sic__calendar-list--few::before {
  background: url(../img/common/ico-cal-tri.svg) no-repeat;
  background-size: 22px auto;  
}
.sic__calendar-list--request::before {
  background: url(../img/common/ico-cal-rect.svg) no-repeat;
  background-size: 22px auto;  
}
.sic__calendar-list--no::before {
  background: url(../img/common/ico-cal-cross.svg) no-repeat;
  background-size: 22px auto;
  margin-right: 7px;
}
.sic__calendar-note .sic__item {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.4;
}
.sic__calendar-number-btn-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.sic__calendar-number-btn-box .sic__btn-reserve .sic__btn {
  padding: 0 38px 0 40px;
  margin-bottom: 0;
}

/*  #sic__modal-confirm
-----------------------------------------------------------*/
#sic__modal-confirm .sic__wrapper {
  display: flex;
}
.sic__modal-confirm-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding: 23px 0;
}
#colorbox.confirm #cboxLoadedContent {
  height: auto;
  width: auto;
  padding: 0;
  border-radius: 5px;
}
#colorbox.confirm #cboxContent {
  border-radius: 5px;
}
#sic__modal-confirm {
  width: 376px;
}
#sic__modal-confirm .sic__modal-confirm-no,
#sic__modal-confirm .sic__modal-confirm-yes {
  width: 50%;
}
#sic__modal-confirm .sic__btn {
  width: 100%;
  height: 58px;
  color: #00b3c8;
  border-radius: 0;
  border: none;
  border-top: 1px solid #dfdfdf;
}
#sic__modal-confirm .sic__modal-confirm-yes .sic__btn {
  border-left: 1px solid #dfdfdf;
}
#colorbox.sic__modal-pdg #cboxLoadedContent {
  padding: 30px 0;
}
#colorbox.sic__modal-pdg .cboxPhoto {
  width: 900px !important;
  height: 450px !important;
}
#colorbox.sic__modal-pdg-movie #cboxContent {
  padding: 30px 60px;
  margin: 0 auto;
}

.sic__txt-l {
  font-size: 2rem;
}
.sic__txt-s {
  font-size: 1.3rem;
}
#sic-header .sic__btn-cart .sic__btn-num {
    display: flex;
    align-items: center;
    height: 15px;
    font-size: 1.1rem;
    line-height: 1;
    color: #fff;
    background-color: #00adc7;
    padding: 0 4px;
    margin-left: 5px;
}
