@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  color: #333333;
  font-family:
    'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ',
    Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1; /*1.43*/
  letter-spacing: 0.05em;
  word-break: break-all;
  word-wrap: break-word;
  height: 100%;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=================
overlay
=================*/
#overlay {
  background-color: rgba(128, 128, 128, 0.5);
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

/*=================
header
=================*/
.header {
  border-bottom: solid 1px #d3cecc;
}

.header__inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
}
@media (min-width: 540px) {
  .header__inner {
    padding: 10px 0;
  }
}

.header__title {
  float: left;
  padding: 5px;
}
@media (min-width: 540px) {
  .header__title {
    padding: 0;
  }
}

.header__logo {
  text-indent: 100%;
  white-space: nowrap;
  background-image: url('../images/header/logo_mini.jpeg');
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: 32px;
  height: 22px;
  margin: 0;
  display: inline-block;
  overflow: hidden;
}

.header__web-reservation-logo {
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: auto;
  height: 22px;
  margin: 2px 0;
  display: inline-block;
}

@media (min-width: 330px) {
  .header__logo {
    width: 37px;
    height: 26px;
  }
  .header__web-reservation-logo {
    width: auto;
    height: 26px;
    margin: 0;
  }
}

@media (min-width: 540px) {
  .header__logo {
    width: 62px;
    height: 43px;
  }
  .header__web-reservation-logo {
    width: auto;
    height: 43px;
  }
}

@media (min-width: 670px) {
  .header__logo {
    background-image: url('../images/header/logo.png');
    width: 240px;
    height: 36px;
  }
}

.header__menu {
  float: right;
  overflow: hidden;
}
@media (min-width: 540px) {
  .header__menu {
    margin: 4px auto;
  }
}

.header__menu-item {
  float: left;
}

.header__menu-item + .header__menu-item {
  margin-left: 5px;
}

.header__menu-item a {
  color: #fff;
  font-size: 10px;
  letter-spacing: normal;
  background-color: #48b157;
  padding: 24px 8px 6px 8px;
  display: block;
  border-radius: 5px;
  position: relative;
}
@media (min-width: 540px) {
  .header__menu-item a {
    font-size: 14px;
    padding: 11px 15px 10px;
    padding-left: 35px;
  }
}

.header__menu-item a::before {
  font-family: 'icon';
  font-size: 14px;
  text-align: center;
  letter-spacing: normal;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-top: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (min-width: 540px) {
  .header__menu-item a::before {
    font-size: 15px;
    margin: auto;
    left: 15px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
}

.header__login::before {
  content: '\e90c';
}

.header__inquiry::before {
  content: '\e90d';
}

/*=================
footer
=================*/
.footer {
  padding: 0 15px;
  overflow: hidden;
}
@media (min-width: 540px) {
  .footer {
    padding: 0;
  }
}

.footer__link {
  font-size: 0;
  text-align: center;
  letter-spacing: normal;
  border-top: solid 1px #d3cecc;
}
@media (min-width: 540px) {
  .footer__link {
    padding: 35px 0 20px;
  }
}

.footer__link-item {
  width: 50%;
  vertical-align: bottom;
  display: inline-block;
  border-bottom: 1px solid #d3cecc;
}
@media (min-width: 540px) {
  .footer__link-item {
    width: auto;
    border: none;
  }
}

@media (min-width: 540px) {
  .footer__link-item + .footer__link-item {
    margin-left: 25px;
  }
}

.footer__link-item a {
  color: #333333;
  font-size: 12px;
  text-align: left;
  padding: 20px 40px 18px 0;
  display: block;
  position: relative;
}
@media (min-width: 540px) {
  .footer__link-item a {
    padding: 0 20px 0 0;
  }
}

.footer__link-item a::after {
  font-family: 'icon';
  content: '\e900';
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
@media (min-width: 540px) {
  .footer__link-item a::after {
    right: 0;
  }
}

/* copyright */
.copyright {
  color: #333333;
  font-size: 10px;
  text-align: center;
  padding: 15px 0;
}

/* inquiry */
.footer__inquiry {
  max-width: 442px;
  margin: 0 auto 25px;
}

.footer__inquiry-btn a {
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: #48b157;
  padding: 15px;
  display: block;
  border-radius: 5px;
  position: relative;
}

.footer__inquiry-btn a::after {
  font-family: 'icon';
  content: '\e900';
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}

/*=================
modalBox
=================*/
.modalBox {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-overflow-style: none;
}

/* footer */
#inquiry__modal {
  background-color: #48b157;
  padding: 14px 8px 8px;
  width: 92%;
  min-width: 290px;
  max-width: 345px;
  display: none;
  border-radius: 5px;
}

.inquiry__modal-title {
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 14px;
}

.inquiry__modal-inner {
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 5px;
}

.inquiry__modal-item {
  color: #333333;
}

.inquiry__modal-item + .inquiry__modal-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #ccc;
}

.inquiry__modal-type {
  text-align: center;
}

.inquiry__modal-subtitle {
  color: #48b157;
  font-size: 12px;
  padding: 3px 5px;
  border: 1px solid #48b157;
  border-radius: 50px;
}

.inquiry__modal-body {
  margin-top: 15px;
}

.inquiry__modal-tel {
  color: #333333;
  font-size: 26px;
  font-weight: bold;
  display: block;
}

.inquiry__modal-info {
  font-size: 11px;
  margin-top: 10px;
  line-height: 1rem;
}

.inquiry__modal-info-tel {
  color: #333333;
}

/* modal close */
.modal__close-btn {
  position: absolute;
  top: -30px;
  right: 10px;
}

.modal__close-btn a {
  text-indent: 100%;
  letter-spacing: normal;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  position: relative;
}

.modal__close-btn a::before,
.modal__close-btn a::after {
  content: ' ';
  background-color: #fff;
  width: 3px;
  height: 25px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.modal__close-btn a::before {
  -webkit-transform: translate(8px, -2.5px) rotate(-45deg);
  -ms-transform: translate(8px, -2.5px) rotate(-45deg);
  -o-transform: translate(8px, -2.5px) rotate(-45deg);
  transform: translate(8px, -2.5px) rotate(-45deg);
}

.modal__close-btn a::after {
  -webkit-transform: translate(8px, -2.5px) rotate(45deg);
  -ms-transform: translate(8px, -2.5px) rotate(45deg);
  -o-transform: translate(8px, -2.5px) rotate(45deg);
  transform: translate(8px, -2.5px) rotate(45deg);
}

/*=================
container
=================*/
.container-wrap {
  min-height: 100%;
}

/*=================
bookingMain
=================*/
.booking.booking__main {
  max-width: 950px;
  padding: 25px 10px;
}

.booking__note {
  background-color: #f2f2f2;
  border-radius: 6px;
  padding: 18px 24px;
  color: #333333;
  font-size: 0.8rem;
  margin: 18px 0;
  border: 1px solid #e0e0e0;
  text-align: center;
}

/*=================
contractFlow
=================*/
#contractFlow {
  color: #e69f1c;
  font-size: 10px;
  letter-spacing: normal;
  width: 100%;
  height: 50px;
  display: table;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: solid 1px #e69f1c;
  list-style-type: none;
}
@media (min-width: 375px) {
  #contractFlow {
    font-size: 12px;
  }
}
@media (min-width: 600px) {
  #contractFlow {
    font-size: 14px;
  }
}

.contractFlow__item {
  text-align: center;
  line-height: 1.3;
  vertical-align: middle;
  width: 25%;
  padding: 5px 0;
  display: table-cell;
  position: relative;
}

.contractFlow__item span {
  display: block;
}
@media (min-width: 768px) {
  .contractFlow__item span {
    display: inline-block;
    position: relative;
  }
  .contractFlow__item span + span {
    margin-left: 1em;
  }
  .contractFlow__item span + span::before {
    content: ' ';
    background-color: #e69f1c;
    width: 0.25em;
    height: 0.25em;
    margin: auto;
    display: block;
    border-radius: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -0.55em;
  }
}

@media (min-width: 768px) {
  .contractFlow__item br {
    display: none;
  }
}

.contractFlow__item + .contractFlow__item {
  padding-left: 13px;
}

.contractFlow__item + .contractFlow__item:last-of-type {
  padding-left: 8px;
}

.contractFlow__item + .contractFlow__item::before,
.contractFlow__item + .contractFlow__item::after {
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 10px;
  display: block;
  position: absolute;
  top: -1px;
}

.contractFlow__item + .contractFlow__item::before {
  border-color: transparent transparent transparent #e69f1c;
  left: 0;
}

.contractFlow__item + .contractFlow__item::after {
  border-color: transparent transparent transparent #fff;
  left: -1px;
}

.contractFlow__item-current {
  color: #fff;
  background-color: #e69f1c;
}

.contractFlow__item-current span + span::before {
  background-color: #fff;
}

.contractFlow__item-current + .contractFlow__item::after {
  display: none;
}

/*=================
contents
=================*/
* + .contents,
.contents + .contents,
.contents__inner {
  margin-top: 30px;
}

/*=================
contractContents
=================*/
@media (min-width: 768px) {
  .contractContents {
    margin-left: -50px;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .contractContents__item {
    padding-left: 50px;
  }
}

.contractContents__item + .contractContents__item {
  margin-top: 30px;
}

.rentable_period {
  font-size: 12px;
  word-break: break-word;
}

/* title */
.contractContents__title {
  color: #333333;
  font-size: 14px;
}
@media (min-width: 768px) {
  .contractContents__title {
    font-size: 16px;
  }
}

/* body */
.contractContents__body {
  margin-top: 15px;
}

/* period */
.contractContents__period {
  overflow: hidden;
}

@media (min-width: 768px) {
  .contractContents__period {
    width: 500px;
  }
}

.contractContents__period.contractPeriod__tilde::after {
  bottom: 20%;
}

.contractContents__period-item {
  width: 39%;
  float: left;
}
@media (min-width: 768px) {
  .contractContents__period-item {
    width: 200px;
  }
}

.contractContents__period-item + .contractContents__period-item {
  margin: 0 0 0 22%;
}

@media (min-width: 768px) {
  .contractContents__period-item + .contractContents__period-item {
    margin: 0 0 0 100px;
  }
}

/* title */
.contractContents__period-title {
  color: #e6552b;
  font-size: 14px;
}

/* body */
.contractContents__period-body {
  margin-top: 5px;
}

@media (min-width: 768px) {
  .contractContents__period-title,
  .contractContents__period-body {
    vertical-align: middle;
    float: left;
    clear: left;
  }
}

/*=================
contractOption
=================*/
/* list */
@media (min-width: 600px) {
  .contractOption__list {
    font-size: 0;
    letter-spacing: normal;
    margin: 0 0 -15px -15px;
    overflow: hidden;
  }
}

/* wrap */
* + .contractOption__list {
  margin-top: 15px;
}

@media (min-width: 600px) {
  .contractOption__list-item {
    vertical-align: top;
    width: calc((100% - 30px) / 2);
    margin: 0 0 15px 15px;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .contractOption__list-item {
    width: calc((100% - 45px) / 3);
  }
}

.contractOption__list-item + .contractOption__list-item {
  margin-top: 5px;
}
@media (min-width: 600px) {
  .contractOption__list-item + .contractOption__list-item {
    margin-top: 0;
  }
}

/* checkbox */
.contractOption__list-item input[type='checkbox'] {
  display: none;
}

/* a */
.contractOption__list-item > a {
  color: #333333;
  font-size: 14px;
  width: 100%;
  height: 100%;
  padding: 10px;
  display: table;
  border: solid 1px #d3cecc;
  border-radius: 5px;
  overflow: hidden;
}

.contractOption__list-item input[type='checkbox']:checked + a {
  border: solid 1px #e6552b;
  position: relative;
  z-index: 0;
}

.contractOption__list-item input[type='checkbox']:checked + a::before {
  font-family: 'icon';
  content: '\e903';
  color: #ff4500;
  font-size: 20px;
  line-height: 1em;
  vertical-align: middle;
  background-color: #ffb296;
  width: 1em;
  height: 1em;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
}

.contractOption__list-item input[type='checkbox']:checked + a::after {
  content: ' ';
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contractOption__outline-reload {
  max-width: 240px;
  margin: 12px auto 25px;
}

.contractOption__outline-reload a,
.contractOption__outline-reload button {
  cursor: pointer;
  color: #fff;
  width: 100%;
  font-size: 14px;
  text-align: center;
  background-color: #48b157;
  padding: 10px;
  display: block;
  border: none;
  border-radius: 5px;
  position: relative;
}

/* thumb/detail */
.contractOption__item-thumb,
.contractOption__item-detail {
  vertical-align: middle;
  display: table-cell;
}

/* thumb */
.contractOption__item-thumb {
  width: 85px;
}

.contractOption__item-thumb img {
  width: 100%;
}

/* detail */
.contractOption__item-detail {
  padding-left: 10px;
}

/* title */
.contractOption__detail-title {
  font-weight: bold;
  line-height: 1.3;
}

/* price */
.contractOption__detail-price {
  font-size: 12px;
  margin-top: 5px;
}
.contractOption__detail-price > span {
  color: #e6552b;
}

/* category */
.contractOption__category {
  overflow: hidden;
}
@media (min-width: 600px) {
  .contractOption__category {
    margin-right: -2%;
  }
}

* + .contractOption__category {
  margin-top: 5px;
}

.grid-sizer,
.contractOption__category-item {
  width: 100%;
  float: left;
}

@media (min-width: 600px) {
  .grid-sizer,
  .contractOption__category-item {
    width: 48%;
    margin-right: 2%;
  }
}
@media (min-width: 950px) {
  .grid-sizer,
  .contractOption__category-item {
    width: 31.3%;
  }
}

/*@media (min-width: 600px) {
  .gutter-sizer {
    width: 2%;
  }
}*/

/* title */
.contractOption__category-title {
  padding: 15px;
  position: relative;
}

.contractOption__category-title::before {
  font-family: 'icon';
  line-height: 1em;
  letter-spacing: normal;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
}

.contractOption__category-homeAppliance {
  padding-left: 59px;
}

.contractOption__category-homeAppliance::before {
  content: '\e90e';
  font-size: 29px;
}

.contractOption__category-homeKitchen {
  padding-left: 63px;
}

.contractOption__category-homeKitchen::before {
  content: '\e90f';
  font-size: 33px;
}

.contractOption__category-furniture {
  padding-left: 71px;
}

.contractOption__category-furniture::before {
  content: '\e910';
  font-size: 41px;
}

/* category list */
.contractOption__category-catalog {
  border-bottom: solid 1px #d3dedd;
}

.contractOption__catalog-item {
  border-top: solid 1px #d3dedd;
}

.contractOption__catalog-item > a {
  color: #333333;
  font-size: 14px;
  background-color: #faf8ea;
  padding: 15px;
  display: block;
  position: relative;
}

.contractOption__catalog-item > a::after {
  content: ' ';
  width: 8px;
  height: 8px;
  margin: auto;
  display: block;
  border-top: solid 1px #d3cecc;
  border-right: solid 1px #d3cecc;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* detail */
.contractOption__detail {
  padding: 40px 20px;
}

/* outline */
.contractOption__detail-outline {
  overflow: hidden;
}

/* thumb */
@media (min-width: 768px) {
  .contractOption__detail-thumb {
    width: 47.5%;
    max-width: 350px;
    float: left;
  }
}

.contractOption__detail-thumb img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

/* description */
.contractOption__detail-description {
  margin-top: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contractOption__detail-description {
    margin-top: 0;
    padding-left: 20px;
  }
}

/* title */
.contractOption__description-title {
  font-size: 16px;
}
@media (min-width: 768px) {
  .contractOption__description-title {
    font-size: 18px;
  }
}

/* number */
.contractOption__description-number {
  font-size: 14px;
  margin-top: 15px;
}

.contractOption__description-number span {
  font-weight: bold;
}

/* text */
.contractOption__description-text {
  font-size: 14px;
  line-height: 1.48;
  margin-top: 15px;
}

.contractOption__description-text a {
  color: #4d92fa;
  text-decoration: underline;
}

.contractOption__description-text a:hover {
  text-decoration: none;
}

/* addBtn */
.contractOption__description-btn {
  margin-top: 20px;
}

/* item */
.contractOption__outline-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #d3cecc;
}

/* subtitle */
.contractOption__item-subtitle {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .contractOption__item-subtitle {
    font-size: 16px;
  }
}

/* body */
.contractOption__item-body {
  margin-top: 15px;
}

/* text */
.contractOption__item-text {
  font-size: 12px;
  line-height: 1.48;
}
@media (min-width: 768px) {
  .contractOption__item-text {
    font-size: 14px;
  }
}

/* price */
.contractOption__item-price {
  font-size: 14px;
}

.contractOption__item-price span {
  font-size: 12px;
  margin-left: 3px;
}

/* price item */
.contractOption__price-item {
  font-size: 14px;
}

.contractOption__price-item + .contractOption__price-item {
  margin-top: 10px;
}

.contractOption__price-title {
  background-color: #f2eae6;
  padding: 10px;
}
@media (min-width: 768px) {
  .contractOption__price-title {
    padding: 13px 15px;
  }
}

.contractOption__price-body {
  background-color: #fdfbf9;
  padding: 15px 10px;
}
@media (min-width: 768px) {
  .contractOption__price-body {
    padding: 18px 15px;
  }
}

/* spec */
.contractOption__spec-item {
  font-size: 14px;
  overflow: hidden;
}

.contractOption__spec-item + .contractOption__spec-item {
  margin-top: 10px;
}

.contractOption__spec-title {
  color: #fff;
  font-size: 12px;
  background-color: #333333;
  text-align: center;
  min-width: 70px;
  padding: 4px 5px;
  float: left;
}
@media (min-width: 768px) {
  .contractOption__spec-title {
    min-width: 80px;
    padding: 4px 10px;
  }
}

@media (min-width: 600px) {
  .contractOption__spec-title br {
    display: none;
  }
}

.contractOption__spec-body {
  line-height: 1.43;
  padding: 0 0 0 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contractOption__spec-body {
    padding: 0 0 0 10px;
  }
}

.contractOption__spec-list {
  font-size: 12px;
}

.contractOption__spec-list li + li {
  margin-top: 10px;
}

.contractOption__spec-text {
  font-size: 14px;
  line-height: 1.43;
  margin-top: 15px;
}

.contractOption__spec-text a {
  color: #4d92fa;
  text-decoration: underline;
}

.contractOption__spec-text a:hover {
  text-decoration: none;
}

/* notice */
.contractOption__detail-notice {
  margin: 15px 0 0;
  padding: 10px;
  border: solid 1px #333333;
}
@media (min-width: 768px) {
  .contractOption__detail-notice {
    margin: 15px 0 30px;
  }
}

.contractOption__detail-notice.comList {
  font-size: 12px;
}

/* addBtn/deleteBtn */
.contractOption__addBtn,
.contractOption__deleteBtn {
  text-align: center;
  max-width: 295px;
  margin: 0 auto;
  padding: 15px;
  display: block;
  border-radius: 5px;
}

.contractOption__addBtn span,
.contractOption__deleteBtn span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.contractOption__addBtn span::before,
.contractOption__deleteBtn span::before {
  font-family: 'icon';
  content: '\e903';
  font-size: 20px;
  vertical-align: middle;
  line-height: 1em;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
}

/* add */
.contractOption__addBtn {
  background-color: #fa7d4e;
}

.contractOption__addBtn span::before {
  color: #ff4500;
  background-color: #ffb296;
}

/* delete */
.contractOption__deleteBtn {
  background-color: #48b157;
}

.contractOption__deleteBtn span::before {
  color: #415d33;
  background-color: #bdcc9c;
}

/*=================
optionMOdal
=================*/
.optionModal {
  display: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.optionModal__scroll {
  background-color: #fff;
  width: 90vw;
  max-width: 800px;
  height: 60vh;
  overflow-y: scroll;
  position: relative;
}

/* tax */
.optionModal__tax {
  font-size: 12px;
  position: absolute;
  top: 15px;
  left: 20px;
}

/* close */
.optionModal__close {
  top: 10px;
  right: 10px;
  position: fixed;
}
/* IE11用閉じるボタンハック：スクロールで閉じるボタンが見なくなるのが問題あればこのハックは全部消してください */
_:lang(x)::-ms-backdrop,
.optionModal__close {
  position: absolute;
}
@media (min-width: 769px) {
  .optionModal__close {
    right: 30px;
  }
}

.optionModal__close a {
  text-indent: 100%;
  letter-spacing: normal;
  white-space: nowrap;
  background-color: #fa7d4e;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

.optionModal__close a::before,
.optionModal__close a::after {
  content: ' ';
  background-color: #fff;
  width: 2px;
  height: 14px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.optionModal__close a::before {
  -webkit-transform: translate(9px, 3px) rotate(-45deg);
  -ms-transform: translate(9px, 3px) rotate(-45deg);
  -o-transform: translate(9px, 3px) rotate(-45deg);
  transform: translate(9px, 3px) rotate(-45deg);
}

.optionModal__close a::after {
  -webkit-transform: translate(9px, 3px) rotate(45deg);
  -ms-transform: translate(9px, 3px) rotate(45deg);
  -o-transform: translate(9px, 3px) rotate(45deg);
  transform: translate(9px, 3px) rotate(45deg);
}

/* list */
.optionModal .contractOption__list {
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .optionModal .contractOption__list-item {
    width: calc((100% - 60px) / 4);
  }
}
@media (min-width: 950px) {
  .optionModal .contractOption__list-item {
    width: calc((100% - 75px) / 5);
  }
}

@media (min-width: 600px) {
  .optionModal .contractOption__list-item > a {
    font-size: 13px;
    padding-bottom: 2.5em;
    position: relative;
  }
}

@media (min-width: 600px) {
  .optionModal .contractOption__item-thumb,
  .optionModal .contractOption__item-detail {
    display: block;
  }
}

@media (min-width: 600px) {
  .optionModal .contractOption__item-thumb {
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
  }
}

@media (min-width: 600px) {
  .optionModal .contractOption__item-detail {
    margin-top: 10px;
    padding-left: 0;
  }
}

@media (min-width: 600px) {
  .optionModal .contractOption__detail-price {
    font-size: 13px;
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}

/*=================
contractCheck
=================*/
.contractCheck {
  color: #323232;
  background-color: #f6f6f6;
  margin: 0 -10px;
  padding: 20px;
}
@media (min-width: 768px) {
  .contractCheck {
    padding: 25px;
  }
}
@media (min-width: 950px) {
  .contractCheck {
    margin: 0;
  }
}

/* confirm */
.contractCheck__confirm {
  background-color: transparent;
  margin: 0;
  padding: 0;
}

/* title */
.contractCheck__title {
  width: 100%;
  display: table;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.contractCheck__title-main,
.contractCheck__title-btn {
  vertical-align: middle;
  display: table-cell;
}
@media (min-width: 768px) {
  .contractCheck__title-main,
  .contractCheck__title-btn {
    display: inline-block;
  }
}

.contractCheck__title-main {
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .contractCheck__title-main {
    font-size: 20px;
  }
}

/* btn */
.contractCheck__title-btn {
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .contractCheck__title-btn {
    padding-left: 20px;
  }
}

.contractCheck__title-btn a {
  color: #fff;
  text-align: center;
  background-color: #e6552b;
  padding: 15px;
  display: inline-block;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .contractCheck__title-btn a {
    color: #fff;
    background-color: #e6552b;
    padding: 6px 18px 6px 10px;
    display: block;
    border-radius: 3px;
    position: relative;
  }

  .contractCheck__title-btn a::after {
    content: ' ';
    width: 6px;
    height: 6px;
    margin: auto;
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* inner */
.contractCheck__inner {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contractCheck__inner {
    overflow: hidden;
  }
}

/* img */
@media (min-width: 768px) {
  .contractCheck__thumb {
    width: 47.5%;
    float: left;
  }
}

.contractCheck__thumb img {
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
}

/* detail */
.contractCheck__detail {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contractCheck__detail {
    margin: 0;
    padding-left: 50px;
    overflow: hidden;
  }
}

.contractCheck__detail-item + .contractCheck__detail-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #ccc;
}

/* title */
.contractCheck__detail-title {
  font-size: 14px;
  font-weight: normal;
}
@media (min-width: 768px) {
  .contractCheck__detail-title {
    font-size: 16px;
  }
}

/* body */
.contractCheck__detail-body {
  margin-top: 15px;
}

/* period */
.contractCheck__period {
  text-align: center;
  overflow: hidden;
}

.contractCheck__period-item {
  width: 42%;
  float: left;
}

.contractCheck__period-item + .contractCheck__period-item {
  margin-left: 16%;
}

/* title */
.contractCheck__period-title {
  color: #e6552b;
  font-size: 12px;
  background-color: #fff;
  padding: 3px;
}
@media (min-width: 768px) {
  .contractCheck__period-title {
    font-size: 14px;
  }
}

/* body */
.contractCheck__period-body {
  font-size: 14px;
  margin-top: 10px;
}
@media (min-width: 375px) {
  .contractCheck__period-body {
    font-size: 16px;
  }
}

/* total */
.contractCheck__total {
  font-size: 14px;
  text-align: right;
}
@media (min-width: 375px) {
  .contractCheck__total {
    font-size: 16px;
  }
}

/* option */
.contractCheck__option-item + .contractCheck__option-item {
  margin-top: 20px;
}

/* title */
.contractCheck__option-title {
  background-color: #e6e6e6;
  width: 100%;
  padding: 5px 10px;
  display: table;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.contractCheck__option-titleMain,
.contractCheck__option-titleBtn {
  vertical-align: middle;
  display: table-cell;
}

.contractCheck__option-titleMain {
  font-size: 14px;
  font-weight: normal;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* btn */
.contractCheck__option-titleBtn {
  text-align: right;
  white-space: nowrap;
}

.contractCheck__option-titleBtn a {
  color: #fff;
  font-size: 12px;
  text-align: center;
  background-color: #333333;
  padding: 6px 20px 6px 10px;
  display: inline-block;
  border-radius: 3px;
  position: relative;
}

.contractCheck__option-titleBtn a::after {
  content: ' ';
  width: 6px;
  height: 6px;
  margin: auto;
  display: block;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* body */
.contractCheck__option-body {
  margin-top: 10px;
}

/* list */
.contractCheck__list {
  font-size: 14px;
}

.contractCheck__list-item {
  width: 100%;
  display: table;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.contractCheck__list-item + .contractCheck__list-item {
  margin-top: 10px;
}

.contractCheck__item-title,
.contractCheck__item-body {
  vertical-align: middle;
  display: table-cell;
}

.contractCheck__item-titleMain,
.contractCheck__item-titleIcon {
  vertical-align: top;
  display: table-cell;
}

.contractCheck__item-titleIcon {
  color: #fff;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  padding: 3px 5px;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .contractCheck__item-titleIcon {
    font-size: 14px;
  }
}

.contractCheck__item-titleIcon::after {
  content: ' ';
  display: block;
  background-color: #e69f1c;
  height: 1.5em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.contractCheck__item-titleMain {
  line-height: 1.3;
}

.contractCheck__item-titleIcon + .contractCheck__item-titleMain {
  padding-left: 10px;
}

.contractCheck__item-body {
  text-align: right;
  white-space: nowrap;
  padding-left: 1em;
}

/* notice */
.contractCheck__notice {
  color: #525252;
  font-size: 12px;
  margin-top: 15px;
}

.contractCheck__notice-item + .contractCheck__notice-item {
  margin-top: 5px;
}

.contractCheck__notice_small {
  color: #525252;
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*=================
period tilda
=================*/
.contractPeriod__tilde {
  position: relative;
}

.contractPeriod__tilde::after {
  content: '～';
  font-size: 14px;
  text-align: center;
  width: 1em;
  height: 1em;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 375px) {
  .contractPeriod__tilde::after {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .contractPeriod__tilde::after {
  }
}

/*=================
contractBack
=================*/
.contractCheck__detail-item.contractBack {
  padding-top: 0;
  border-top: none;
}

.contractCheck__option-item.contractBack {
  margin-top: 15px;
}

.contractBack {
  text-align: center;
}

.contractBack a {
  color: #333333;
  font-size: 12px;
  text-align: center;
  background-color: #e6e6e6;
  padding: 7px 10px;
  padding-right: 25px;
  display: inline-block;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.contractBack a:before {
  font-family: 'icon';
  content: '\e900';
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
}

/*=================
contractTotal
=================*/
* + .contractTotal {
  margin-top: 30px;
}

.contractTotal {
  letter-spacing: normal;
  text-align: center;
  font-weight: bold;
}

.contractTotal__fixed {
  background-color: #fff;
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.13);
}

.contractTotal__sticky {
  background-color: #fff;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.13);
}

.contractTotal__sticky.static .contractTotal__buttons {
  gap: 10px;
}

.contractTotal__centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 15px;
  font-size: x-large;
}

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

.contractTotal__price + .contractTotal__price {
  display: none;
  opacity: 0;
}

.contractTotal__price > .container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  /* Tap のテキストが切り取られないよう Tap のテキストサイズ分余白を用意*/
  padding-top: 8px;
}

.contractTotal__price {
  text-align: left;
  padding-left: 28px;
  max-width: 100%;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.contractTotal__price-update {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contractTotal__price-update button {
  text-indent: 100%;
  white-space: nowrap;
  background-color: transparent;
  width: 20px;
  height: 20px;
  margin: auto;
  padding: 0;
  border: none;
  overflow: hidden;
}

.contractTotal__price-update button::before {
  font-family: 'icon';
  content: '\e90b';
  color: #e6552b;
  font-size: 20px;
  text-align: center;
  text-indent: 0;
  width: 1em;
  height: 1em;
  margin-top: 5px;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contractTotal__price-update button:hover {
  cursor: pointer;
}

.contractTotal__price-updateBtn-text {
  position: absolute;
  top: 10%;
  font-size: 8px;
  margin-top: -7px;
}

.contractTotal__price-title {
  color: #804050;
  font-size: 14px;
}

.contractTotal__price-title span {
  font-size: 12px;
  margin-left: 3px;
}

.contractTotal__price-value {
  color: #323232;
  font-size: 16px;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-top: 5px;
  overflow: hidden;
}
@media (min-width: 375px) {
  .contractTotal__price-value {
    font-size: 20px;
  }
}

.contractTotal__price-value span {
  font-size: 14px;
  margin-left: 3px;
}

.contractTotal__price-update.adjust {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.contractTotal__next button {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  background-color: #e6552b;
  width: 100%;
  padding: 0;
  display: block;
  border: none;
  cursor: pointer;
}

.static .contractTotal__next button {
  border-radius: 5px;
}

.contractTotal__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contractTotal__buttons > .contractTotal__back {
  flex: 1;
  text-align: center;
}

.contractTotal__buttons > .contractTotal__next {
  flex: 1;
  text-align: center;
}

.contractTotal__back button {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  background-color: #323232;
  width: 100%;
  padding: 0;
  display: block;
  border: none;
  cursor: pointer;
}

.static .contractTotal__back button {
  border-radius: 5px;
}

/*=================
comText
=================*/
* + .comText {
  margin-top: 25px;
}

.comText {
  font-size: 14px;
  line-height: 1.48;
}

.comText > a {
  color: #4d92fa;
  text-decoration: underline;
}

.comText > a:hover {
  text-decoration: none;
}

.comText + .comText {
  margin-top: 15px;
}

/*=================
comLink
=================*/
.comLink {
  margin: 15px 0;
}

.comLink a {
  color: #4d92fa;
  font-size: 14px;
  text-decoration: underline;
}

.comLink a:hover {
  text-decoration: none;
}

.comLink a::before {
  content: ' ';
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  display: inline-block;
  border-top: solid 1px #4d92fa;
  border-right: solid 1px #4d92fa;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*=================
comList
=================*/
.comList {
  font-size: 14px;
  line-height: 1.43;
  counter-reset: count;
}

* + .comList,
.comList + .comList {
  margin-top: 15px;
}

.comList li {
  padding-left: 1.5em;
  position: relative;
}

.comList li + li {
  margin-top: 10px;
}

.comList li::before {
  text-align: center;
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
}

.comList li > a {
  color: #4d92fa;
  text-decoration: underline;
}

.comList li > a:hover {
  text-decoration: none;
}

/* typeNone */
.comList__typeNone li {
  padding-left: 0;
}

/* typeDots */
.comList__typeDisc li::before {
  content: '・';
}

/* typeNotice */
.comList__typeNotice li::before {
  content: '※';
}

/* count */
.comList__typeCount li:nth-of-type(n + 10) {
  padding-left: 2em;
}

.comList__typeCount li::before {
  counter-increment: count;
  content: counter(count) '.';
}

/*=================
comDefine
=================*/
.comDefine {
  line-height: 1.43;
  font-size: 14px;
}

* .comDefine,
.comDefine + .comDefine {
  margin-top: 15px;
}

.comDefine dt {
  color: #fa7d4e;
  font-weight: bold;
}

.comDefine dd {
  margin-top: 5px;
}

.comDefine dd > a {
  color: #4d92fa;
  text-decoration: underline;
}

.comDefine dd > a:hover {
  text-decoration: none;
}

/*=================
comTable
=================*/
.comTable {
  font-size: 14px;
  line-height: 1.43;
  background-color: #d3dedd;
  width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 1px;
}

* + .comTable,
.comTable + .comTable {
  margin-top: 15px;
}

.comTable th,
.comTable td {
  /* display: block; */
  display: table-cell;
}
@media (min-width: 600px) {
  .comTable th,
  .comTable td {
    vertical-align: middle;
    display: table-cell;
  }
}

.comTable th {
  background-color: #faf8ea;
  padding: 15px 10px;
}
@media (min-width: 600px) {
  .comTable th {
    white-space: nowrap;
    /* width: 25%; */
  }
}

.comTable td {
  background-color: #fff;
  padding: 15px 10px;
}

.comTable td > a {
  color: #4d92fa;
  text-decoration: underline;
}

.comTable td > a:hover {
  text-decoration: none;
}

/*=================
billing
=================*/
.billingTable {
  font-size: 11px;
  background-color: #d3dedd;
  table-layout: auto;
  width: 100%;
  border: 1px solid #48b157;
}

* + .billingTable,
.billingTable + .billingTable {
  margin-top: 15px;
}

.billingTable th {
  font-size: 14px;
  padding: 10px;
  background-color: #48b157;
  color: white;
  height: 30px;
}

/*=================
confirm
=================*/
/* input */
.confirm__input-text input[type='text'] {
  color: #333333;
  line-height: 42px;
  width: 100%;
  height: 42px;
  padding: 10px;
  border: solid 1px #e6552b;
  border-radius: 5px;
}

/* select */
.confirm__select select {
  color: #333333;
  padding: 0 10px;
  border: solid 1px #e6552b;
  border-radius: 5px;
}

.confirm__select select#use_number {
  line-height: 42px;
  width: 100%;
  height: 42px;
}

/* select arrow */
.confirm__select-arrow {
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 0;
}

.confirm__select-arrow::after {
  content: ' ';
  width: 0;
  height: 0;
  margin: auto;
  display: block;
  border-style: solid;
  border-width: 8px 6px;
  border-color: #e6552b transparent transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  z-index: -1;
  -webkit-transform: translateY(25%);
  -ms-transform: translateY(25%);
  -o-transform: translateY(25%);
  transform: translateY(25%);
}

.confirm__select-arrow select {
  background-color: transparent;
  padding-right: 40px;
}

.confirm__select-arrow + span {
  color: #333333;
  margin-left: 10px;
}

/* contractContents */
.contractContents .confirm__select-arrow {
  width: 35%;
  max-width: 160px;
}

/* hover */
.confirm__input-text input:hover,
.confirm__select select:hover {
  cursor: pointer;
}

/*=================
webicon
=================*/
@font-face {
  font-family: 'icon';
  src: url('../fonts/icon.eot?k18wbt');
  src:
    url('../fonts/icon.eot?k18wbt#iefix') format('embedded-opentype'),
    url('../fonts/icon.ttf?k18wbt') format('truetype'),
    url('../fonts/icon.woff?k18wbt') format('woff'),
    url('../fonts/icon.svg?k18wbt#icon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^='icon_'],
[class*=' icon_'] {
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon_arow:before {
  content: '\e900';
}

.icon_calender:before {
  content: '\e901';
}

.icon_check:before {
  content: '\e904';
}

.icon_column:before {
  content: '\e905';
}

.icon_cycle:before {
  content: '\e906';
}

.icon_square:before {
  content: '\e907';
}

.icon_phone:before {
  content: '\e908';
}

.icon_close:before {
  content: '\e909';
}

.icon_account:before {
  content: '\e90a';
}

.icon-reload:before {
  content: '\e90b';
}

.icon-login:before {
  content: '\e90c';
}

.icon-inquire:before {
  content: '\e90d';
}

.icon-homeAppliance:before {
  content: '\e90e';
}

.icon-homeKitchen:before {
  content: '\e90f';
}

.icon-furniture:before {
  content: '\e910';
}

.icon_check-full:before {
  content: '\e903';
  border-radius: 50%;
  background: #f8f0f0;
  color: rgb(255, 69, 0);
  font-family: 'icon';
}

.icon_check-full .path1:before {
  content: '\e902';
  color: #f8f0f0;
}

.icon_check-full .path2:before {
  content: '\e903';
  margin-left: -1em;
  color: rgb(255, 69, 0);
}

/*=================
parts
=================*/
.asterisk {
  padding-left: 4px;
  color: #ff4500;
  font-size: 14px;
}

.notes {
  padding-bottom: 8px;
  color: #333333;
  font-size: 13px;
  line-height: 1.34;
}

.notes::before {
  content: '※';
}

.link {
  color: #ff4500;
}

.link_tel {
  pointer-events: auto;
}

.txt-link {
  text-align: right;
}

.txt-link__forgot-password {
  color: #e6552b;
  font-size: 12px;
}

.txt-link__password-disclosure {
  padding-left: 4px;
  color: #e6552b;
  font-size: 12px;
}

.xs-visible {
  display: none;
}

/*=================
btn
=================*/
.btn {
  padding: 16px 0;
  border: 1px solid transparent;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.btn[disabled] {
  background-color: #ccc;
  cursor: default;
}

.btn_primary,
.btn_signup {
  width: 100%;
  padding: 15px 0;
  border-radius: 8px;
}

.btn_primary {
  background: #e6552b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_back {
  width: 100%;
  border-color: #e6552b;
  border-radius: 8px;
  background: transparent;
  color: #e6552b;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_signup {
  display: block;
  border-color: #e6552b;
  background: transparent;
  color: #e6552b;
}

.btn_delete {
  width: 72px;
  padding: 7px;
  border-radius: 25px;
  background: #d3cecc;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}

.btn_accessory {
  display: inline-block;
  width: 72px; /*width: calc(100% - 80px);*/
  margin-left: 8px;
  padding: 15px 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: top;
  letter-spacing: 0.1em;
}

.btn_download {
  display: block;
  margin: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #e6552b;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
}
.btn_download::before {
  content: '▼';
}

/*=================
input
=================*/
.input-default,
.input-default__date {
  color: #333333;
  font-size: 16px;
}

.input-default {
  width: 100%;
  min-height: 44px;
  padding: 10px 15px 8px;
  border: 1px solid #d3cecc;
  border-radius: 4px;
  background: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  outline: none;
}

.input-default {
  cursor: text;
}

.input-default__date {
  width: auto;
  min-width: 200px;
  line-height: 1;
}

/*=================
checkbox
=================*/
.checkbox {
  display: inline-block;
  cursor: pointer;
}

.checkbox::before {
  content: '\e906';
  color: #d3cecc;
  font-size: 20px;
  font-family: 'icon';
}

.checkbox__input:checked + .checkbox::before {
  content: '\e903';
  border-radius: 50%;
  background: #f8f0f0;
  color: rgb(255, 69, 0);
}

.checkbox__input {
  display: none;
}

/*=================
date
=================*/
.date {
  overflow: hidden;
  height: 48px;
  border: 1px solid #e6552b;
  border-radius: 8px;
  cursor: pointer;
}

.date::after {
  content: '';
  display: block;
  clear: both;
}

.date__input,
.date__heading {
  float: left;
  height: 46px;
  padding: 0;
  border: 0;
  text-align: center;
  line-height: 46px;
}

.date__input {
  width: 50%;
  margin: 0;
  color: #323232;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.date__heading {
  display: none;
  width: 20%;
  background: #e6552b;
  color: #fff;
  font-size: 14px;
}

.date__input:first-of-type {
  position: relative;
  border-right: 1px solid #e6552b;
  border-radius: 0;
}

.date__icon {
  width: 24px;
}

/*=================
textarea
=================*/
.textarea {
  height: 10em;
}

* + .textarea {
  margin-top: 25px;
}

/*=================
alart
=================*/
.alert {
  padding: 8px 0 15px;
  border: 1px solid;
  border-radius: 8px;
  overflow: hidden;
}

.alert_error {
  color: #ff4500;
  max-width: 442px;
  margin: 30px auto;
  border-color: #ff4500;
}

.alert__label {
  font-size: 18px;
  line-height: 1.43;
  margin: 0 14px 8px;
  padding: 12px 0 16px;
  display: block;
  border-bottom: 1px solid #ff4500;
}

.alert__label_listing {
  font-weight: bold;
  text-align: center;
  text-indent: 0.5em;
  letter-spacing: 0.1em;
}

.alert__txt {
  font-size: 13px;
  line-height: 1.3;
  padding: 8px 24px 0;
}

/*=================
notice
=================*/
.notice {
  padding: 8px 0 15px;
  border: 1px solid;
  border-radius: 8px;
  overflow: hidden;
}

.notice_section {
  color: #e6552b;
  max-width: 442px;
  margin: 30px auto;
  border-color: #e6552b;
}

.notice__label {
  font-size: 18px;
  line-height: 1.43;
  margin: 0 24px 8px;
  padding: 12px 0 16px;
  display: block;
  border-bottom: 1px solid #e6552b;
}

.notice__label_listing {
  font-weight: bold;
  text-align: center;
  text-indent: 0.5em;
  letter-spacing: 0.5em;
}

.notice__txt {
  font-size: 13px;
  line-height: 1.3;
  padding: 8px 24px 0;
}

/*=================
price-breakdown
=================*/
.price-breakdown {
  width: 100%;
}

.price-breakdown__caption {
  padding-bottom: 4px;
  text-align: left;
  font-size: 14px;
}

.price-breakdown__caption::before {
  content: '\e907';
  padding-right: 2px;
  font-family: 'icon';
  font-size: 12px;
}

.price-breakdown__title {
  display: block;
  position: relative;
  margin-top: 16px;
  padding: 10px 8px 8px;
  background: #efefef;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}

.price-breakdown__title::after {
  content: '';
  display: block;
  clear: both;
}

.price-breakdown__row:first-of-type .price-breakdown__title {
  margin-top: 8px;
}

.price-breakdown__label,
.price-breakdown__value,
.price-breakdown__normal,
.price-breakdown__campaign {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.43;
}

.price-breakdown__label {
  padding-right: 8px;
}

.price-breakdown__tag,
.price-breakdown__tag-txt {
  display: table-cell;
  vertical-align: top;
}

.price-breakdown__tag {
  position: relative;
  padding: 4px 4px 0;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: normal;
  white-space: nowrap;
}

.price-breakdown__tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 2px;
  background: #e6552b;
  width: 100%;
  height: 18px;
}

.price-breakdown__tag-txt {
  padding-left: 8px;
}

.price-breakdown__value,
.price-breakdown__normal,
.price-breakdown__campaign {
  text-align: right;
  white-space: nowrap;
  letter-spacing: normal;
  vertical-align: top;
}

.price-breakdown__normal {
  margin-right: 4px;
  color: #333333;
  font-size: 12px;
  text-decoration: line-through;
  vertical-align: baseline;
}

.price-breakdown__campaign {
  color: #e6552b;
  font-weight: bold;
}

.price-breakdown__link {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 4px 4px 4px 8px;
  border-radius: 2px;
  background: #fff;
  color: #333333;
  font-size: 12px;
}

.price-breakdown__link::after {
  content: '\e900';
  padding-left: 3px;
  font-size: 8px;
  font-family: 'icon';
}
/*=================
file-list
=================*/
.file-list__input {
  display: none;
}

.file-list__inner {
  display: inline-block;
  width: calc(100% - 72px);
  overflow: hidden;
  padding-right: 8px;
  font-size: 14px;
  text-align: right;
  text-overflow: ellipsis;
  line-height: 1.7;
  white-space: nowrap;
  vertical-align: middle;
}

.file-list__btn {
  display: block;
  width: 160px;
  margin: 24px 0 8px;
  padding: 18px 0 15px;
  border: 1px solid #e6552b;
  border-radius: 8px;
  color: #e6552b;
  font-size: 13px;
  font-weight: normal;
}
.file-list__btn.disabled {
  background-color: #ccc;
  border: 1px solid #333333;
  color: #333333;
}

/*=================
tab
=================*/
.tab {
  overflow: hidden;
  position: relative;
  width: 100%;
  border: 1px solid #e6552b;
  border-radius: 8px;
  font-size: 11px;
  text-align: center;
}

.tab_guide {
  border-color: #333333;
}

.tab__item {
  position: relative;
  display: block;
  float: left;
  overflow: hidden;
  width: 50%;
  height: 44px;
  border: none;
  color: #e6552b;
  font-weight: bold;
  text-align: center;
  line-height: 44px;
}

.tab__item::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: #e6552b;
}

.tab__item:last-of-type::after {
  display: none;
}

.tab__item_guide {
  width: 33.3333333%;
  color: #333333;
}

.tab__item_guide::after {
  background: #333333;
}

.tab-section {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#tab_1,
#tab_2,
#tab_3 {
  display: none;
}

.tab a[href='#tab_1'],
#tab_1:target ~ .tab a[href='#tab_1'],
#tab_2:target ~ .tab a[href='#tab_2'],
#tab_3:target ~ .tab a[href='#tab_3'] {
  background: #e6552b;
  color: #fff;
}

.tab-content .tab-section:nth-child(1),
#tab_1:target ~ .tab-content .tab-section:nth-child(1),
#tab_2:target ~ .tab-content .tab-section:nth-child(2),
#tab_3:target ~ .tab-content .tab-section:nth-child(3) {
  height: auto;
  opacity: 1;
}

.tab_guide a[href='#tab_1'],
#tab_1:target ~ .tab_guide a[href='#tab_1'],
#tab_2:target ~ .tab_guide a[href='#tab_2'],
#tab_3:target ~ .tab_guide a[href='#tab_3'] {
  background: #333333;
}

.tab-switch:target ~ .tab a[href='#tab_1'] {
  background: none;
  color: #e6552b;
}

.tab-switch:target ~ .tab_guide a[href='#tab_1'] {
  background: none;
  color: #333333;
}

.tab-switch:target ~ .tab-content .tab-section:nth-child(1) {
  height: 0;
  padding: 0;
  opacity: 0;
}

/*=================
option
=================*/
.option {
  position: relative;
  margin-top: 8px;
}

.option-list {
  padding-top: 8px;
}

.option-list__item {
  font-size: 13px;
  border-bottom: 1px solid #d3cecc;
}

.option-list__arrow {
  float: right;
  right: 0;
}

.option-list__arrow::before {
  content: '\e905';
  display: block;
  color: #d3cecc;
  font-family: 'icon';
}

.option-list__contents {
  font-size: 0;
  letter-spacing: normal;
}

.option-list__box {
  display: block;
  position: relative;
  margin: 0 0 4px 0;
  font-size: 13px;
  vertical-align: top;
  letter-spacing: 0.05em;
}

.option__checkbox {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 999;
  opacity: 0;
}

.option__checkbox::before {
  font-size: 24px;
}

.option-list__body {
  display: table;
  table-layout: auto;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 4px;
  opacity: 1;
  font-size: 13px;
}

.option-list__body::after {
  content: '';
  display: block;
  clear: both;
}

.checkbox__input:checked ~ .option-list__body {
  border: 1px solid #e6552b;
  opacity: 0.6;
}

.checkbox__input:checked + .option__checkbox {
  opacity: 1;
}

.option-list__img,
.option-list__description {
  display: table-cell;
  vertical-align: middle;
}

.option-list__img {
  position: relative;
  z-index: -1;
  width: 120px;
  height: 90px;
  border-radius: 3px;
  object-fit: cover;
}

.option-list__description {
  width: 100%;
  padding-left: 10px;
  line-height: 1.5;
}

.option-list__name {
  display: block;
  font-weight: bold;
}

.active .option-list__arrow::before {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.option-list__arrow::before {
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
}

.toggle {
  display: block;
  line-height: 47px;
}

/*=================
guide
=================*/
.guide__title {
  padding: 16px 0;
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
}

.guide__tag {
  display: block;
  width: 160px;
  margin-top: 8px;
  padding: 6px 0 5px;
  border-radius: 2px;
  background: #333333;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1;
}

/*=================
room
=================*/
.room_name-wrap {
  letter-spacing: normal;
  font-size: 0;
}

.room__name,
.room__detail-link {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.room__name {
  font-size: 16px;
  line-height: 1.43;
}

.room__name_detail {
  width: calc(100% - 80px);
}

.room__detail-link {
  background: #e6552b;
  color: #fff;
}

.room__photo-link {
  display: block;
  overflow: hidden;
  position: relative;
  color: #323232;
  outline: none;
  padding-top: 66.6667%;
  border-radius: 3px;
}

.room__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.room__photo-link.black-back {
  background: black;
}

.room__photo.opacity {
  opacity: 0.5;
}

.room__photo-text {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  color: white;
  text-align: center;
}

@media screen and (min-width: 540px) {
  .room__photo-text {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 769px) {
  .room__photo-text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 950px) {
  .room__photo-text {
    font-size: 1.2rem;
  }
}

.room__contens {
  padding-top: 8px;
}

.room__date {
  padding-top: 4px;
  font-size: 14px;
}

.room__btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding-top: 8px;
}

.room__btn {
  width: 32%;
  border-color: #e6552b;
  border-radius: 8px;
  background: transparent;
  color: #e6552b;
  font-size: 0.8rem;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.1rem;
}

.room__btn.download {
  background: #e6552b;
  color: #fff;
}

.room__btn.download::before {
  content: '▼';
}

.room__remarks-wrap {
  padding-top: 5px;
  font-size: 14px;
}

/*=================
modal
=================*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}

.modal__bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(128, 128, 128, 0.5);
  z-index: 999;
}

.modal__dialog {
  position: relative;
  height: 100vh;
  padding: 24px;
}

.modal__content {
  width: 100%;
  max-width: 480px;
  max-height: 80%;
  overflow-y: auto;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 4px;
  outline: 0;
  -ms-overflow-style: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
}

.modal__header {
  padding: 40px 16px 16px;
  border-bottom: 1px solid #d3cecc;
  border-radius: 0.4px;
}

.modal__body {
  padding: 8px 16px 32px;
}

.modal__footer {
  display: block;
  padding: 24px 16px 24px;
  border-top: 1px solid #e9ecef;
}

.modal__close {
  display: block;
  float: right;
  margin: 16px;
  cursor: pointer;
}

.modal__close::before {
  content: '\e909';
  color: #d3cecc;
  font-size: 18px;
  font-family: 'icon';
}

.modal__close-txt {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
}

/*=================
contract-modal
=================*/
.contract-modal__title {
  font-size: 20px;
  font-weight: normal;
}

.contract-modal__date {
  display: block;
  padding-top: 16px;
  color: #333333;
  font-size: 14px;
}

/*=================
total
=================*/
.total {
  font-weight: bold;
}

.total__heading {
  padding-bottom: 4px;
  color: #333333;
  font-size: 14px;
}
.total__value {
  font-size: 20px;
}

.total__yen {
  padding-left: 4px;
  font-size: 14px;
  font-weight: normal;
}

/*=================
booking
=================*/
.booking {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 24px 84px;
  position: relative;
}

.booking_form {
  max-width: 750px;
}

.booking__footer {
  width: 100%;
  height: 56px;
  overflow: hidden;
  margin: 24px 0;
}

.booking__fixed {
  display: table;
  table-layout: fixed;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 56px;
  background: #fff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

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

.booking__fixed-item_total {
  padding-left: 24px;
}

.booking__fixed-item_btn {
  min-width: 100%;
  height: 56px;
  background: #e6552b;
  color: #fff;
}

.booking__heading,
.booking__heading-with-padding-top {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.booking__heading-with-padding-top {
  padding-top: 8px;
}

.booking__heading-with-padding-top {
  padding-top: 16px;
}

.booking__title-line {
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d3cecc;
}

.booking__section {
  position: relative;
  margin-bottom: 8px;
  padding: 24px 0 32px;
  border-bottom: 1px solid #d3cecc;
}

.booking__description,
.booking__required {
  font-size: 13px;
  font-weight: normal;
}

.booking__description {
  padding-top: 8px;
  line-height: 1.43;
}

.booking__required {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #333333;
}

.booking__requirements-link {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* 未訪問のリンクの色 */
a.booking__pdf-link:link,
/* クリック中のリンクの色 */
a.booking__pdf-link:active {
  color:  #48b157;
  text-decoration: underline;
  text-decoration-color: #48b157 !important;
}

/* 訪問済みのリンクの色 */
a.booking__pdf-link:visited {
  color:  #225429;
  text-decoration: underline;
  text-decoration-color: #225429 !important;
}

.booking__container {
  margin-top: 32px;
}

.booking__fixed.static .booking__fixed-item_total {
  padding-left: 0;
}

.booking__fixed.static .booking__fixed-item_btn {
  border-radius: 8px;
}

/*=================
billing
=================*/
.billing {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 24px 84px;
  position: relative;
}

.billing_form {
  max-width: 750px;
}

.billing__section {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 24px 0 32px;
  border-bottom: 1px solid #d3cecc;
}

.billing__heading {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

.billing__heading-list-item {
  width: 100%;
  display: table;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
}

.billing__heading-list-item-title,
.billing__heading-list-item-body {
  vertical-align: middle;
  display: table-cell;
}

.billing__heading-list-item-body {
  text-align: right;
}

.billing__detail-title {
  font-size: 1rem;
}

.billing__detail-subtotal {
  font-size: 1rem;
  text-align: right;
}

.billing__detail-list-item {
  width: 100%;
  display: table;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.8rem;
}

.billing__detail-item-title,
.billing__detail-item-body {
  vertical-align: middle;
  display: block;
}

.billing__detail-item-body {
  text-align: right;
}

.billing__detail-item {
  font-size: 14px;
}

.billing__detail-item-title {
  margin-top: 1rem;
}

.billing__back-btn a {
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: #e6552b;
  padding: 15px;
  display: block;
  border-radius: 5px;
  position: relative;
}

.billing__back-btn a::after {
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}

/*=================
mymenu
=================*/
.mymenuList {
  margin-top: 30px;
}
@media (min-width: 600px) {
  .mymenuList {
    font-size: 0;
    letter-spacing: 0;
    margin-top: 10px;
  }
}

.mymenuList__item {
  margin-top: 20px;
  border: 1px solid #d3cecc;
  border-radius: 5px;
}
@media (min-width: 600px) {
  .mymenuList__item {
    vertical-align: middle;
    width: -webkit-calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    display: inline-block;
  }
}

@media (min-width: 600px) {
  .mymenuList__item:nth-of-type(2n + 0) {
    margin-left: 20px;
  }
}

.mymenuList__item a {
  color: #333333;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 20px;
  padding-right: 42px;
  display: block;
  position: relative;
}
@media (min-width: 600px) {
  .mymenuList__item a {
    font-size: 16px;
  }
}

.mymenuList__item a:after {
  font-family: 'icon';
  content: '\e900';
  font-size: 12px;
  width: 1em;
  height: 1em;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}

.mymenuNote {
  text-align: center;
  padding: 20px 0;
}
.mymenuNote .text {
  font-size: 0.8rem;
}

.mymenuNote .link {
  line-height: 2.0rem;
}

.mymenuNote a:link,
/* クリック中のリンクの色 */
.mymenuNote a:active {
  color:  #48b157;
  text-decoration: underline;
  text-decoration-color: #48b157 !important;
}

/* 訪問済みのリンクの色 */
.mymenuNote a:visited  {
  color:  #225429;
  text-decoration: underline;
  text-decoration-color: #225429 !important;
}

/*=================
form
=================*/
.form__multiple,
.form__half-wrap {
  letter-spacing: normal;
  font-size: 0;
}

.form__btn-wrap {
  max-width: 480px;
  margin: 44px auto 32px auto;
}

.form__submit {
  margin-top: 44px;
}

.form__back {
  margin-top: 22px;
}

.form__label {
  display: block;
  padding: 24px 0 8px;
  font-size: 14px;
}

.form__label_login,
.form__label_signup {
  font-weight: bold;
}

.form__label_signup {
  padding-top: 0;
  color: #333333;
}

.form__label-description {
  display: block;
  padding-top: 4px;
  color: #333333;
  font-size: 12px;
}

.form__label-description::before {
  content: '※';
}

.form__half-wrap {
  margin-right: -8px;
}

.form__half {
  display: inline-block;
  position: relative;
  width: 50%;
  padding-right: 8px;
}

.form__checkbox {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form__input-checkbox {
  display: block;
  padding-left: 50px;
  color: #d3cecc;
  cursor: pointer;
}

.checkbox__input:checked ~ .form__input-checkbox {
  border-color: #e6552b;
  color: #333333;
}

.form__forgot-password {
  margin-top: 8px;
}

.form__postal-code {
  display: inline-block;
  /* width: calc(100% - 80px); */
  width: 160px;
  vertical-align: top;
}

.form__postal-btn {
  border-radius: 4px;
  background: #d3cecc;
  color: #333333;
}

.form__confirmation {
  display: block;
  position: relative;
  margin-top: 32px;
}

.form__confirmation-txt {
  font-size: 14px;
  line-height: 1.75;
}

.form__text {
  padding-top: 8px;
}

[disabled] {
  background: #d3cecc !important;
  color: #333333 !important;
}
[disabled] ~ .checkbox::before {
  content: '' !important;
  background: #d3cecc !important;
  color: #333333 !important;
}
[disabled] ~ .form__input-checkbox {
  border-color: #d3cecc !important;
  background: #d3cecc !important;
  color: #333333 !important;
}

/*=================
login-form
=================*/
.login-form__header {
  margin: 0 auto;
  max-width: 540px;
  padding: 40px 24px 0;
}

.login-form__header h2 {
  padding-bottom: 8px;
}

.login-form__description {
  font-size: 13px;
  font-weight: normal;
}

.login-form__inner {
  margin: 0 auto;
  max-width: 540px;
  padding: 0 24px 40px;
  border: 0;
  background: #fff;
}

/*=================
listing
=================*/
.listing__table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 0;
  padding-top: 32px;
}

.listing__table-wrap {
  display: block;
  margin-bottom: 32px;
  padding: 0;
}

.listing__table-wrap:first-of-type {
  border-right: 0;
  padding: 0;
}

.listing__date {
  margin: 8px 0 24px;
}

/*=================
slick
=================*/
.slick {
  margin: 8px -24px;
}

.booking.booking__main .slick {
  margin: 8px -10px;
}

.slick__list {
  margin-right: 8px;
}

.slick__area {
  padding-bottom: 4px;
  color: #333333;
  font-size: 10px;
}

.slick__title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}

.slick__price {
  padding-top: 2px;
  font-size: 11px;
}

.slick__label {
  padding-top: 4px;
  color: #e6552b;
  font-size: 10px;
  line-height: 1.3;
}

.slick-dots li button:before {
  font-size: 24px;
}

/*=================
contract
=================*/
.contract__list {
  margin-right: 0;
  font-size: 0px;
  letter-spacing: normal;
}

.contract__group {
  display: inline-block;
  width: 100%;
  padding: 24px 0 6px;
  vertical-align: top;
}

.contract__contents {
  height: 5.98em;
  padding-top: 8px;
  font-size: 16px;
}

/*=================
Add-js
=================*/
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.static {
  gap: 10px;
  position: static;
  box-shadow: none;
}

/*=================
responsive
=================*/
@media (max-width: 336px) {
  .xs-visible {
    display: block;
  }
}
@media (min-width: 480px) {
  .foot-inquiry__subtitle {
    display: inline-block;
  }

  .option-list__contents {
    margin-right: -8px;
  }

  .option-list__box {
    display: inline-block;
    width: calc(33.3333333% - 8px);
    margin: 0 8px 16px 0;
  }

  .option-list__img,
  .option-list__description {
    display: block;
  }

  .option-list__description {
    height: 7.8em;
    padding: 4px 0 0 0;
  }

  .option-list__img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 540px) {
  .head-inquiry__number {
    display: inline-block;
    padding-left: 10px;
    font-weight: bold;
  }

  .head-inquiry__icon::before {
    float: none;
  }

  .login-form__inner {
    margin-top: 40px;
    padding: 24px 48px 48px;
    border: 1px solid #d3cecc;
    border-radius: 8px;
  }

  .pc-hidden {
    display: none;
  }

  .link_tel {
    cursor: default;
    pointer-events: none;
  }

  .tab-content {
    border: 1px solid #e6552b;
  }

  .tab {
    border: none;
    border-radius: 0;
  }

  .tab__item {
    margin-right: 8px;
    width: auto;
    min-width: 200px;
    min-height: 44px;
    border: 1px solid #e6552b;
    border-bottom: 0;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
  }

  .tab__item::after {
    display: none;
  }

  .tab-content_guide,
  .tab__item_guide {
    border-color: #333333;
  }

  .tab__item_guide {
    min-width: 150px;
  }

  .option-list {
    padding: 8px 24px 24px;
  }

  .option-list_default {
    padding: 16px 24px 0;
  }

  .guide {
    max-width: 500px;
    padding: 0 24px 24px;
  }

  .date__heading {
    display: block;
  }

  .date__input {
    width: 40%;
  }

  .listing__date {
    margin-top: 24px;
  }

  .total__heading,
  .total__value {
    display: inline-block;
  }

  .booking__fixed {
    text-align: center;
  }

  .contract__list {
    margin-right: -24px;
  }

  .contract__group {
    width: 50%;
    padding-right: 24px;
  }

  .room__name_detail {
    width: auto;
    font-size: 18px;
  }

  .room__detail-link {
    padding: 5px 2px 4px 8px;
    border-radius: 2px;
    background: #efefef;
    color: #333333;
    font-size: 12px;
  }

  .room__detail-link::after {
    content: '\e900';
    padding-left: 3px;
    font-size: 8px;
    font-family: 'icon';
  }

  .slick {
    margin-right: 0;
    margin-left: 0;
  }

  .listing__table {
    margin-bottom: 16px;
  }

  .listing__table-wrap {
    display: table-cell;
    padding-left: 32px;
  }

  .listing__table-wrap:first-of-type {
    border-right: 1px solid #d3cecc;
    padding: 0 32px 0 0;
  }

  .listing__date {
    margin: 8px 0 24px;
  }
}

@media (min-width: 642px) {
  .option-list__box {
    width: calc(25% - 8px);
  }
}

@media (min-width: 780px) {
  .option-list__box {
    width: calc(20% - 8px);
  }
}

@media (min-width: 980px) {
  .option-list__box {
    width: 140px;
  }

  .contract__contents {
    /* height: 3.68em; */
    height: 4.24em;
  }
  .head-inquiry {
    margin: 8px auto;
  }
}

.display_none {
  display: none;
}

.section-header {
  /* アイコンとタイトルを横並びにする */
  display: flex;
  /* 垂直方向中央揃え */
  align-items: center;
  /* 下部に余白 */
  margin-bottom: 10px;
}

/* 丸い数字のアイコン */
.section-number {
  width: 40px;
  height: 40px;
  background-color: #e69f1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  /* 水平方向中央揃え */
  justify-content: center;
  /* 垂直方向中央揃え */
  align-items: center;
  font-size: x-large;
  /* タイトルとの間に余白 */
  margin-right: 15px;
  /* 幅が縮まらないようにする */
  flex-shrink: 0;
}

/* 見出しのタイトル */
.section-title {
  color: #e69f1c;
  font-size: x-large;
  /* デフォルトのマージンをリセット */
  margin: 0;
  /* 行の高さ */
  line-height: 1.2;
}

