/* variables */
/** Color **/
/* base color */
/* mixin */
/** Common parts **/
.base_arrow {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
}
.base_arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
/* Function */
/* 再利用できる共通スタイルの定義 */
/* main container styles */
.c-border {
  background-image: url(../../../assets/images/border.png);
  height: 10px;
  width: 100%;
}
.c-doubleBox {
  border: 3px solid #efefef;
  padding: 3px;
  width: 100%;
}
.c-doubleBox .box {
  border: 1px solid #efefef;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
}
.c-box_grey {
  width: 100%;
  background-color: #e6e6e6;
  padding: 5px;
}
.c-arrow_down {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  padding-left: 0;
  right: 15px;
  left: inherit;
}
.c-arrow_down::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.c-arrow_down:before {
  transform: rotate(135deg);
  border-color: #333;
  top: -5px;
}
@media (max-width: 800px) {
  .c-arrow_down:before {
    top: 0;
  }
}
.c-border-link {
  padding-bottom: 2px;
  border-bottom: 1px solid #999999;
}
/* btn */
.c-baseBtn {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 40px;
  margin: auto;
  margin-top: 20px;
  background-color: #a0a09f;
  text-align: center;
  line-height: 40px;
  color: #fff;
}
.c-baseBtn:link {
  color: #fff;
}
.c-baseBtn:visited {
  color: #fff;
}
.c-baseBtn:active {
  color: #fff;
}
.c-baseBtn:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .c-baseBtn {
    width: 95%;
  }
}
.c-baseBtn.bottom {
  margin-top: auto;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .c-baseBtn.bottom {
    margin-top: 20px;
  }
}
.c-baseBtn .arrow {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
}
.c-baseBtn .arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.c-continueBtn {
  background-color: #339900;
  width: 320px;
  height: 50px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  line-height: 50px;
  display: block;
  border-style: none;
}
@media (max-width: 800px) {
  .c-continueBtn {
    width: 95%;
  }
}
.c-continueBtn:disabled {
  background-color: #a0a09f;
  color: #cccccc;
}
.c-greyBtn {
  background-color: #cccccc;
  min-width: 200px;
  width: max-content;
  height: 50px;
  text-align: center;
  color: #333;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  line-height: 50px;
  display: block;
  font-weight: 500;
  outline: none;
}
@media (max-width: 800px) {
  .c-greyBtn {
    width: 75%;
  }
}
.c-bullet {
  text-indent: -1em;
  padding-left: 2em;
  font-size: 85%;
}
.c-link {
  color: #337ab7;
}
.c-link:link {
  color: #337ab7;
}
.c-link:visited {
  color: #337ab7;
}
.c-link:active {
  color: #337ab7;
}
.c-link:hover {
  color: #337ab7;
}
.c-title-link {
  color: #ffcc33 !important;
}
.c-title-link:hover {
  color: #fff !important;
  opacity: initial;
  text-shadow: 0 0 18px #337ab7, 0 0 18px #337ab7, 0 0 18px #337ab7;
}
.c-tel[href^="tel:"] {
  display: inline-block;
  pointer-events: none;
  color: inherit;
}
@media (max-width: 800px) {
  .c-tel[href^="tel:"] {
    pointer-events: all;
    color: #337ab7;
  }
}
/* viewport(IE専用設定) */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
/* font */
@font-face {
  font-family: "lato";
  src: url("../fonts/Lato-Regular.ttf");
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
}
html {
  position: relative;
  min-height: 100%;
  font-size: 16px;
}
/* body */
body {
  padding-bottom: 370px;
  font-size: 16px;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: normal;
  color: #333;
}
@media (max-width: 800px) {
  body {
    font-size: 14px;
    padding-bottom: 190px;
  }
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans CJK JP", sans-serif;
  line-height: inherit;
}
/* container */
.container {
  word-break: break-all;
}
@media (min-width: 751px) {
  .container {
    max-width: 960px;
    width: auto;
  }
  .container.infoWidth {
    max-width: 800px;
  }
  .container.roomWidth {
    max-width: 1080px;
  }
  .container.contactWidth {
    max-width: 800px;
  }
}
@media (max-width: 800px) {
  .container.fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
a {
  color: #333;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}
a:link {
  color: inherit;
}
a:visited {
  color: inherit;
}
a:active {
  color: inherit;
}
a:hover {
  color: #333;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}
input::placeholder,
textarea::placeholder {
  color: #999999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #999999;
}
input::-ms-clear {
  display: none;
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select::-ms-expand {
  display: none;
}
button {
  border: none;
  outline: none;
}
@media (max-width: 800px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}
@media (max-width: 800px) {
  .sp {
    display: inherit;
  }
}
.sp-xs {
  display: none;
}
@media (max-width: 370px) {
  .sp-xs {
    display: inherit;
  }
}
.flexContainer,
.flexContainer_pc {
  display: flex;
}
.flexContainer.x-center,
.flexContainer_pc.x-center {
  justify-content: center;
}
.flexContainer.y-center,
.flexContainer_pc.y-center {
  align-items: center;
}
.flexContainer .flex-col,
.flexContainer_pc .flex-col {
  width: 100%;
}
.flexContainer .flex-col + .flex-col,
.flexContainer_pc .flex-col + .flex-col {
  margin-left: 15px;
}
@media (max-width: 800px) {
  .flexContainer .flex-col + .flex-col,
  .flexContainer_pc .flex-col + .flex-col {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .flexContainer_pc {
    display: inherit;
  }
}
.mt-sm {
  margin-top: 10px;
}
.mt-md {
  margin-top: 15px;
}
.mt-lg {
  margin-top: 30px;
}
.mt-xl {
  margin-top: 45px;
}
.col-margin {
  margin-top: 57px;
}
@media (max-width: 800px) {
  .col-margin {
    margin-top: 15px;
  }
}
/* for fixed navbar */
/* main content */
.main-content {
  margin-top: 60px;
  padding-bottom: 15px;
}
/* footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #a0a09f;
  padding-top: 20px;
  padding-bottom: 200px;
}
@media (max-width: 800px) {
  .footer {
    padding-bottom: 20px;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer avisited {
  color: #fff;
}
.footer .footerArea {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
.footer .footerArea .btns {
  display: flex;
}
.footer .footerArea .infos {
  text-align: right;
}
.footer .menu {
  padding-bottom: 10px;
}
.panel-heading a {
  color: #fff;
}
.sortable-th,
.text-link {
  color: #367fa9;
  text-decoration: underline;
  cursor: pointer;
}
.logoArea {
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}
.logoArea #nav-toggle {
  position: fixed;
  top: 25px;
  right: 17px;
  height: 42px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 5px;
  z-index: 1001;
}
.logoArea #nav-toggle > div {
  position: relative;
  width: 36px;
}
.logoArea #nav-toggle span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #999966;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
.logoArea #nav-toggle span:nth-child(1) {
  top: 0;
}
.logoArea #nav-toggle span:nth-child(2) {
  top: 14px;
}
.logoArea #nav-toggle span:nth-child(3) {
  top: 28px;
}
.logoArea #nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
.logoArea #nav-toggle:hover span:nth-child(3) {
  top: 23px;
}
.logoArea .sp-nav {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(153, 153, 102, 0.96);
  color: #fff;
  transition: all 0.5s ease;
  z-index: 1002;
  overflow: auto;
}
@media (max-width: 800px) {
  .logoArea .sp-nav {
    display: block;
  }
}
.logoArea .sp-nav.open {
  top: 0px;
}
.logoArea .sp-nav .navs {
  padding: 20px;
  padding-bottom: 10px;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logoArea .sp-nav .navs .nav {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.logoArea .sp-nav .navs .nav:last-of-type {
  border: none;
}
.logoArea .sp-nav .navs .nav a {
  color: #fff;
}
.logoArea .sp-nav .closeBtn {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 18px;
  right: 12px;
  cursor: pointer;
}
.logoArea .sp-nav .closeBtn span::before,
.logoArea .sp-nav .closeBtn span::after {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 10px;
  width: 40px;
  height: 4px;
  background: #fff;
}
.logoArea .sp-nav .closeBtn span::before {
  transform: rotate(-45deg);
}
.logoArea .sp-nav .closeBtn span::after {
  transform: rotate(45deg);
}
.logoArea .sp-nav .closeBtn.bottom {
  top: initial;
  bottom: 0px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 20px;
}
.logoArea .sp-nav .closeBtn.bottom .closeText {
  font-family: "lato", sans-serif;
  font-size: 16px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1.2px;
}
.img-center {
  margin: auto;
  display: block;
}
@media (max-width: 800px) {
  .img-center {
    width: 150px;
  }
}
.navArea {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 800px) {
  .navArea {
    display: none;
  }
}
.navArea .navBtn {
  border-right: 1px solid #efefef;
  padding: 0 40px;
}
.navArea .navBtn:first-of-type {
  border-left: 1px solid #efefef;
}
.navArea .navBtn.selected a {
  color: #bc9b5d;
}
.tabContainer {
  margin-top: 30px;
}
@media (max-width: 800px) {
  .tabContainer {
    display: none;
    margin-top: 0;
  }
  .tabContainer.show {
    display: block;
  }
}
.room-bottom {
  margin-top: 30px;
}
@media (max-width: 800px) {
  .room-bottom {
    margin-top: 0;
  }
}
.notice {
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #999999;
}
@media (max-width: 800px) {
  .notice {
    margin-bottom: 20px;
  }
}
.notice_title {
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #999999;
  text-align: center;
}
.notice_detail {
  padding-top: 7px;
  text-align: center;
}
.notice_detail .date {
  padding-right: 30px;
}
@media (max-width: 800px) {
  .notice_detail .date {
    padding-right: 20px;
  }
}
.tabMenu {
  display: none;
  margin-bottom: 30px;
}
@media (max-width: 800px) {
  .tabMenu {
    display: flex;
  }
}
.tabMenu .tab {
  width: 100%;
  text-align: center;
  padding: 3px 0;
  margin: 0 5px;
  border-bottom: 2px solid #efefef;
  cursor: pointer;
}
.tabMenu .tab.short {
  width: 70%;
}
.tabMenu .tab.show {
  border-bottom: 2px solid #990000;
}
.tabMenu .border {
  border-left: 2px dotted #333;
}
.tabMenu .icon {
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}
.tabMenu .icon.dormitory {
  padding-right: 0;
}
.top_title,
.top_title_sp {
  position: relative;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(50% - 70px);
  background-image: url(../../../assets/images/top_title.png);
}
@media (max-width: 800px) {
  .top_title,
  .top_title_sp {
    height: 150px;
    background-size: 150%;
  }
}
.top_title .mainTitle,
.top_title_sp .mainTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  letter-spacing: 5px;
  text-align: center;
  text-shadow: 0px 0px 18px #000000, 0px 0px 18px #000000,
      0px 0px 18px #000000;
}
@media (max-width: 800px) {
  .top_title .mainTitle,
  .top_title_sp .mainTitle {
    font-size: 24px;
  }
}
.top_title.top_title_whole_house_reservation,
.top_title_sp.top_title_whole_house_reservation {
  background-image: url(../../../assets/images/whole_house_reservation/top_title.jpg);
}
.progressArea {
  margin: 5px 0;
  display: flex;
}
.progressArea .progressParts {
  height: 35px;
  width: 100%;
  position: relative;
}
.progressArea .progressParts .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #222222;
  font-size: 14px;
  width: auto;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 800px) {
  .progressArea .progressParts .text {
    font-size: 10px;
  }
}
.topDescription_notes {
  margin: 10px auto 0 auto;
  max-width: 600px;
}
.topDescription_notes .note {
  font-size: 12px;
}
.topDescription_notes .note a {
  color: #337ab7;
}
.title_text {
  font-size: 22px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title_icon {
  width: 60px;
  padding-right: 5px;
}
.banq_imgArea {
  width: 100%;
  flex: 3;
}
.banq_img {
  width: 100%;
  object-fit: contain;
}
.banq_info {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 10px;
  font-size: 14px;
  flex: 2;
}
@media (max-width: 800px) {
  .banq_info {
    margin-left: 0;
  }
}
.banq_info .room_detail + .room_detail {
  margin-top: 10px;
}
@media (max-width: 800px) {
  .banq_info .room_detail + .room_detail {
    margin-top: 0;
  }
}
@media (max-width: 800px) {
  .banq_info .room_detail {
    display: flex;
    padding: 15px 0;
  }
  .banq_info .room_detail + .room_detail {
    border-top: 1px dashed #efefef;
  }
}
.banq_info .room_detail .title .br {
  display: none;
}
@media (max-width: 945px) {
  .banq_info .room_detail .title .br {
    display: block;
  }
}
@media (max-width: 800px) {
  .banq_info .room_detail .title .br {
    display: none;
  }
}
@media (max-width: 800px) {
  .banq_info .room_detail .title {
    margin-top: 0;
    flex: 1;
    padding-right: 10px;
  }
}
.banq_info .room_detail .content {
  padding-left: 30px;
}
@media (max-width: 920px) {
  .banq_info .room_detail .content {
    padding-left: 5px;
  }
}
@media (max-width: 800px) {
  .banq_info .room_detail .content {
    padding-left: 0;
    flex: 2;
  }
}
.banq_info .room_detail .content .indent {
  display: none;
}
@media (max-width: 920px) {
  .banq_info .room_detail .content .indent {
    display: block;
  }
}
.bookingArea {
  position: relative;
  margin-top: 15px;
  padding: 10px 5px;
  border: 1px solid #efefef;
}
@media (max-width: 800px) {
  .bookingArea {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.bookingArea .sp-size {
  display: block;
}
.bookingArea .title {
  padding: 5px 0px;
  width: 150px;
  border-bottom: 2px solid #999999;
  font-size: 18px;
  margin: auto;
  text-align: center;
}
.calArea {
  position: relative;
  width: 100%;
  font-size: 14px;
}
@media (max-width: 800px) {
  .calArea + .calArea {
    margin-top: 20px;
  }
}
.calArea:first-of-type {
  border-right: 1px dashed #999999;
  padding-right: 1px;
  margin-right: 6px;
}
@media (max-width: 800px) {
  .calArea:first-of-type {
    border: none;
  }
}
.calArea.sp-size {
  margin-top: 20px;
  border: none;
}
.calArea .prev {
  position: absolute;
  left: 5px;
  top: 0;
  border: none;
  background: none;
}
.calArea .next {
  position: absolute;
  right: 5px;
  top: 0;
  border: none;
  background: none;
}
.calArea .cal-row {
  display: flex;
  flex-wrap: wrap;
}
.calArea .cal-row .week {
  width: calc(13.57142857%);
  margin: 0.5px;
  text-align: center;
  font-size: 10px;
}
.calArea .cal-row .col {
  width: calc(13.57142857%);
  margin: 0.5px;
  border: 1px solid #efefef;
  height: 37px;
  position: relative;
}
.calArea .cal-row .col.none {
  background-color: #efefef;
}
.calArea .cal-row .col.none .day {
  color: #afafaf;
}
.calArea .cal-row .col .day {
  font-size: 11px;
  position: absolute;
  top: 1px;
  left: 1px;
}
.calArea .cal-row .col .status {
  position: absolute;
  right: 5px;
  bottom: 0px;
  font-weight: bold;
}
.calArea .cal-row .col .status.available {
  color: #cebe76;
}
.calArea .cal-row .col .status.limited {
  color: #cebe76;
}
.calArea .cal-row .col .status.limited-few {
  color: #99cc33;
}
.calArea .cal-row .col .status.full {
  color: #999999;
}
.calArea .cal-row .col .status.unavailable {
  color: #999999;
}
.bookingBtn {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 40px;
  margin: auto;
  background-color: #a0a09f;
  text-align: center;
  line-height: 40px;
  color: #fff;
  overflow: hidden;
  background: none;
  border: 1px solid #999999;
  height: 60px;
  margin-top: 20px;
  padding: 0 10px 15px 10px;
  cursor: default;
  color: #333;
}
.bookingBtn:link {
  color: #fff;
}
.bookingBtn:visited {
  color: #fff;
}
.bookingBtn:active {
  color: #fff;
}
.bookingBtn:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .bookingBtn {
    width: 95%;
  }
}
.bookingBtn.bottom {
  margin-top: auto;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .bookingBtn.bottom {
    margin-top: 20px;
  }
}
.bookingBtn .arrow {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
}
.bookingBtn .arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.bookingBtn:link {
  color: #333;
}
.bookingBtn:visited {
  color: #333;
}
.bookingBtn:active {
  color: #333;
}
.bookingBtn:hover {
  color: #333;
}
.bookingBtn.show {
  height: auto;
}
.bookingBtn.detail {
  height: auto;
  padding: 10px;
}
.bookingBtn .bookingToggle {
  font-size: 18px;
  cursor: pointer;
  padding: 8px 0;
}
@media (max-width: 800px) {
  .bookingBtn .bookingToggle {
    font-size: 16px;
  }
}
.bookingBtn .arrow {
  top: 0px;
}
.bookingBtn .arrow::before {
  top: 25px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: -10px;
}
.bookingBtn .reserveBoxContainer {
  display: flex;
  align-items: center;
}
.bookingBtn .inputArea {
  margin-top: 30px;
}
.bookingBtn .inputArea .input-col {
  width: 100%;
  line-height: 1;
}
.bookingBtn .inputArea .input-col + .input-col {
  margin-left: 10px;
}
@media (max-width: 800px) {
  .bookingBtn .inputArea .input-col + .input-col {
    margin-left: 0;
  }
}
.bookingBtn .inputArea .input-col .inputBox {
  position: relative;
  width: 100%;
}
.bookingBtn .inputArea .input-col .inputBox .selectArea {
  height: 42px;
  font-size: 14px;
  position: relative;
  border-style: none;
  padding-left: 10px;
}
.bookingBtn .inputArea .input-col .inputBox .icon-cal {
  pointer-events: none;
  position: absolute;
  right: 5px;
  top: 5px;
}
.bookingBtn .booking-title {
  text-align: left;
  font-size: 14px;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px dashed #333;
  line-height: 1.2;
  letter-spacing: 1.1px;
}
.bookingBtn .booking-title .en {
  font-size: 10px;
  color: #99cc33;
  font-family: "lato", sans-serif;
}
.reserve_number {
  flex-wrap: wrap;
}
.selectBoxArea {
  font-size: 14px;
  width: 32%;
  display: flex;
  justify-content: center;
  flex: 2;
}
@media (max-width: 800px) {
  .selectBoxArea {
    flex-direction: column;
    flex: 1;
  }
}
.selectBoxArea + .selectBoxArea {
  margin-left: 5px;
}
@media (max-width: 800px) {
  .selectBoxArea + .selectBoxArea {
    margin-left: 0;
  }
}
.selectBoxArea.w-roomDetail {
  width: 120px;
}
@media (max-width: 800px) {
  .selectBoxArea.w-roomDetail {
    width: 33%;
    display: flex;
    flex-direction: column;
  }
}
.selectBoxArea.lg {
  flex: 3;
}
@media (max-width: 800px) {
  .selectBoxArea.lg {
    flex: 1;
  }
}
.selectBoxArea .selectBox {
  width: 100%;
  background-color: #e6e6e6;
  padding: 5px;
  width: 75px;
  height: 42px;
  font-size: 14px;
  margin-left: 5px;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  vertical-align: middle;
  position: relative;
  line-height: 1;
  padding-left: 15px;
}
@media (max-width: 880px) {
  .selectBoxArea .selectBox {
    width: 65px;
  }
}
@media (max-width: 800px) {
  .selectBoxArea .selectBox {
    margin-left: 0;
    width: 95%;
  }
}
.errorMessage {
  color: #990000;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  padding-bottom: 10px;
}
.errorMessage.labelPadding {
  padding-left: 250px;
}
@media (max-width: 800px) {
  .errorMessage.labelPadding {
    padding-left: 0;
  }
}
.errorMessage.text-center {
  text-align: center;
}
.select_wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
  height: 42px;
}
@media (max-width: 800px) {
  .select_wrap {
    display: block;
  }
}
.select_wrap:before {
  z-index: 99;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 9px solid #333;
  pointer-events: none;
}
@media (max-width: 800px) {
  .select_wrap:before {
    right: 15px;
  }
}
.select_sum {
  width: 100%;
  font-size: 14px;
  text-align: right;
  padding-right: 20px;
  justify-content: flex-start;
}
.select_sum.flex-1 {
  flex: 1;
}
@media (max-width: 800px) {
  .select_sum.flex-1 {
    flex: inherit;
  }
}
.select_sum.flex-1-5 {
  flex: 1.5;
}
@media (max-width: 800px) {
  .select_sum.flex-1-5 {
    flex: inherit;
    -ms-flex: 0.7;
  }
}
.input_checkbox_group_wrap {
  width: 424px;
}
@media (max-width: 800px) {
  .input_checkbox_group_wrap {
    width: 100%;
  }
}
.input_checkbox_group_wrap > div {
  display: grid;
  display: -ms-grid;
  gap: 5px;
  grid-gap: 5px;
  grid-template-columns: repeat(3, auto);
}
.input_checkbox_group_wrap > div span {
  white-space: nowrap;
}
.a-border {
  padding-bottom: 2px;
  border-bottom: 2px solid #999999;
  margin-left: 10px;
}
.bottomNav {
  padding: 5px 0;
  border-top: 1px solid #efefef;
  font-size: 14px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .bottomNav {
    border-top: none;
  }
}
.bottomNav .navArea {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.bottomNav .navArea .breadcrumb {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
@media (max-width: 800px) {
  .bottomNav .navArea .breadcrumb {
    font-size: 12px;
    width: 85%;
  }
}
.bottomNav .navArea .page-top {
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 800px) {
  .bottomNav .navArea .page-top {
    background-color: #a0a09f;
    width: 45px;
    height: 45px;
    position: absolute;
    right: 0px;
    bottom: -5px;
  }
}
.bottomNav .navArea .page-top .arrow_up {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  left: 25px;
  right: inherit;
}
.bottomNav .navArea .page-top .arrow_up::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.bottomNav .navArea .page-top .arrow_up:before {
  transform: rotate(-45deg);
  border-color: #333;
  top: 5px;
}
.nextPrev_sp {
  display: none;
  margin-top: 10px;
  position: relative;
  padding: 10px 0;
}
@media (max-width: 800px) {
  .nextPrev_sp {
    display: flex;
  }
}
.nextPrev_sp.sp-size {
  display: flex;
}
.nextPrev_sp .np-btn {
  width: 100%;
  font-size: 20px;
}
.nextPrev_sp .np-btn.next {
  text-align: right;
}
.nextPrev_sp .np-btn.prev {
  text-align: left;
}
.nextPrev_sp .np-col {
  width: 100%;
  position: relative;
}
.nextPrev_sp .np-col .arrow_up,
.nextPrev_sp .np-col .arrow_down {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  padding-left: 0;
}
.nextPrev_sp .np-col .arrow_up::before,
.nextPrev_sp .np-col .arrow_down::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.nextPrev_sp .np-col .arrow_up:before,
.nextPrev_sp .np-col .arrow_down:before {
  cursor: pointer;
}
.nextPrev_sp .np-col .arrow_down {
  right: 25px;
  left: inherit;
}
.nextPrev_sp .np-col .arrow_down:before {
  transform: rotate(135deg);
  border-color: #333;
  top: -5px;
}
.nextPrev_sp .np-col .arrow_up {
  left: 25px;
  right: inherit;
}
.nextPrev_sp .np-col .arrow_up:before {
  transform: rotate(-45deg);
  border-color: #333;
  top: 4px;
}
.instruction {
  margin: 20px 0;
  text-align: center;
  line-height: 1.5;
}
.instruction a {
  padding-bottom: 0;
}
.instruction strong {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .instruction strong {
    font-size: 18px;
  }
}
/* 宿泊予約における入力フォームおよび情報表示エリアのスタイル */
.formControlContainer {
  padding-left: 7px;
  width: 100%;
}
@media (max-width: 800px) {
  .formControlContainer {
    padding-left: 0;
  }
}
.inputContainer {
  display: flex;
  padding: 15px 0 15px 7px;
}
.inputContainer_purpose {
  word-break: keep-all;
}
.inputContainer_purpose:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 800px) {
  .inputContainer {
    display: block;
    border-bottom: 1px dotted #efefef;
    padding-left: 0;
  }
}
.inputContainer .title {
  width: 100%;
  flex: 2;
}
@media (max-width: 800px) {
  .inputContainer .title {
    font-weight: 500;
  }
}
.inputContainer .content {
  width: 100%;
  flex: 5;
}
.inputRadio {
  appearance: none;
  -webkit-appearance: none;
  display: none;
}
.inputRadio:checked + label {
  background-color: #ffcc33;
}
.inputRadio + label {
  background-color: #e6e6e6;
  width: 150px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 900px) {
  .inputRadio.gender + label {
    width: 100px;
  }
}
@media (max-width: 800px) {
  .inputRadio.gender + label {
    width: 49.3%;
  }
}
.inputRadio-payment {
  appearance: none;
  -webkit-appearance: none;
  display: none;
}
.inputRadio-payment:checked + label {
  background-color: #ffcc33;
}
.inputRadio-payment + label {
  background-color: #e6e6e6;
  width: 250px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
}
.inputText_name,
.inputText_area,
.inputText_cancelArea,
.inputText_default {
  background-color: #e6e6e6;
  border-radius: 2px;
  border-style: none;
  padding-left: 10px;
  height: 42px;
}
.inputText_name {
  width: 360px;
}
@media (max-width: 800px) {
  .inputText_name {
    width: 100%;
  }
}
.inputText_area {
  width: 424px;
  height: 100px;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 800px) {
  .inputText_area {
    width: 100%;
  }
}
.inputText_cancelArea {
  width: 424px;
  height: 163px;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 800px) {
  .inputText_cancelArea {
    width: 100%;
  }
}
.inputText_default {
  width: 424px;
}
@media (max-width: 800px) {
  .inputText_default {
    width: 100%;
  }
}
.inputText .second-line {
  padding-top: 0;
}
.inputSelect {
  position: relative;
  background-color: #e6e6e6;
  width: 170px;
  border-style: none;
  border-radius: 0;
  height: 42px;
  padding-left: 10px;
}
@media (max-width: 800px) {
  .inputSelect {
    width: 100%;
    margin-bottom: -10px;
  }
}
.inputSubTitle {
  padding: 5px;
  margin-top: 20px;
  border-bottom: 2px solid #999999;
  font-weight: 500;
}
.input-2col_title {
  line-height: 42px;
  padding-top: 5px;
}
@media (max-width: 800px) {
  .input-2col_title {
    line-height: 1;
  }
}
.input-2col {
  display: flex;
  margin-bottom: -10px;
}
@media (max-width: 800px) {
  .input-2col {
    display: block;
  }
}
.input_agreeArea {
  background-color: #e6e6e6;
  width: 75%;
  margin: 50px auto;
  padding: 20px 0 20px 14vw;
}
@media (max-width: 800px) {
  .input_agreeArea {
    width: 100%;
    padding: 20px 0 20px 30vw;
  }
}
@media (max-width: 600px) {
  .input_agreeArea {
    width: 100%;
    padding: 20px 0 20px 10vw;
  }
}
.input_agreeArea .cancelForm {
  display: none;
  padding-bottom: 10px;
}
.input_agreeArea .cancelForm.show {
  display: block;
}
.input_agreeArea .agreeTOU {
  text-align: left;
}
.agreeTOU {
  width: 100%;
  text-align: center;
}
.agreeTOU label {
  vertical-align: middle;
}
.agreeTOU input[type="checkbox"] {
  display: none;
}
.agreeTOU input[type="checkbox"]:checked + span:before {
  font-family: "fontawesome";
  background-color: #fff;
  border-radius: 3px;
}
.agreeTOU input[type="checkbox"]:checked + span:after {
  content: "\f00c";
  font-family: "fontawesome";
  font-weight: 900;
  color: #ffcc33;
  font-size: 22px;
  width: 14px;
  height: 14px;
  top: -2px;
  left: 2px;
  border-radius: 4px;
  line-height: 1.4;
}
.agreeTOU span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.agreeTOU span:before,
.agreeTOU span:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.agreeTOU span:before {
  width: 25px;
  height: 25px;
  border-radius: 3px;
  background-color: #fff;
  top: 0;
  left: 0;
}
/* carousel */
.carousel .item > img {
  height: 300px;
}
/* Custrom Form */
.form-group {
  display: flex;
  align-items: center;
  padding: 7px 0;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .form-group {
    display: block;
  }
}
.form-group label {
  font-weight: normal;
  margin-bottom: 0;
  border-radius: 2px;
  position: relative;
}
@media (max-width: 800px) {
  .form-group label {
    margin-bottom: 5px;
    width: 49.3%;
  }
}
@media (max-width: 800px) {
  .form-group .agreeTOU label {
    width: auto;
  }
}
.form-group > label {
  width: 250px;
  line-height: 42px;
}
@media (max-width: 800px) {
  .form-group > label {
    display: block;
    line-height: 1.4;
  }
}
.form-group.second-line {
  padding: 0;
}
.confirm_note {
  font-weight: 500;
  text-align: center;
  padding: 30px 0;
}
.cashDescription {
  display: none;
  transition: all 0.6s ease;
  margin-top: 15px;
  padding: 0 5px;
}
@media (max-width: 800px) {
  .cashDescription {
    padding-left: 0;
    padding-right: 0;
  }
}
.cashDescription.show {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cashDescription .note {
  text-align: center;
  padding-bottom: 10px;
}
.cashDescription .col-double,
.cashDescription .col-single {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .cashDescription .col-double,
  .cashDescription .col-single {
    display: block;
  }
}
.cashDescription .col-double .col-box,
.cashDescription .col-single .col-box {
  border: 4px solid #cccccc;
  width: 100%;
  height: 200px;
  margin: 0 10px;
}
@media (max-width: 800px) {
  .cashDescription .col-double .col-box,
  .cashDescription .col-single .col-box {
    height: 170px;
    margin: 0;
    height: auto;
  }
  .cashDescription .col-double .col-box + .col-box,
  .cashDescription .col-single .col-box + .col-box {
    margin-top: 15px;
  }
}
.cashDescription .col-double .col-box .example,
.cashDescription .col-single .col-box .example {
  font-size: 16px;
  padding: 15px 10px;
  text-align: center;
}
@media (max-width: 900px) {
  .cashDescription .col-double .col-box .example,
  .cashDescription .col-single .col-box .example {
    padding: 20px 5px 15px 5px;
  }
}
.cashDescription .col-double .col-box .example.pt-30,
.cashDescription .col-single .col-box .example.pt-30 {
  padding-top: 30px;
}
@media (max-width: 800px) {
  .cashDescription .col-double .col-box .example.pt-30,
  .cashDescription .col-single .col-box .example.pt-30 {
    padding-top: 15px;
  }
}
.cashDescription .col-double .col-box .example .e_money,
.cashDescription .col-single .col-box .example .e_money {
  width: 60px;
}
@media (max-width: 800px) {
  .cashDescription .col-double .col-box .example .e_money,
  .cashDescription .col-single .col-box .example .e_money {
    width: 50px;
  }
}
.cashDescription .col-double .col-box .example .public,
.cashDescription .col-single .col-box .example .public {
  flex: 1;
  border: 1px solid #efefef;
  margin: 15px 5px 15px 25px;
  position: relative;
  padding: 20px 5px 10px 5px;
}
@media (max-width: 800px) {
  .cashDescription .col-double .col-box .example .public,
  .cashDescription .col-single .col-box .example .public {
    margin: 5px;
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  .cashDescription .col-double .col-box .example .public,
  .cashDescription .col-single .col-box .example .public {
    margin-left: 5px;
  }
}
.cashDescription .col-double .col-box .example .public .title,
.cashDescription .col-single .col-box .example .public .title {
  padding-top: 0;
  position: absolute;
  background-color: #fff;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 5px;
  white-space: nowrap;
}
@media (max-width: 345px) {
  .cashDescription .col-double .col-box .example .public .title,
  .cashDescription .col-single .col-box .example .public .title {
    padding: 0;
  }
}
.cashDescription .col-double .col-box .example .payImg,
.cashDescription .col-single .col-box .example .payImg {
  margin: 5px;
}
@media (max-width: 950px) {
  .cashDescription .col-double .col-box .example .payImg,
  .cashDescription .col-single .col-box .example .payImg {
    -moz-transform: scale(0.8);
    -moz-margin-start: -2px;
    -moz-margin-end: -2px;
  }
}
@media (max-width: 900px) {
  .cashDescription .col-double .col-box .example .payImg,
  .cashDescription .col-single .col-box .example .payImg {
    zoom: 0.8;
  }
}
@media (max-width: 800px) {
  .cashDescription .col-double .col-box .example .payImg,
  .cashDescription .col-single .col-box .example .payImg {
    zoom: 1;
    -moz-transform: scale(1);
    -moz-margin-start: 2px;
    -moz-margin-end: 2px;
  }
}
@media (max-width: 600px) {
  .cashDescription .col-double .col-box .example .payImg,
  .cashDescription .col-single .col-box .example .payImg {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-margin-start: -5px;
    -moz-margin-end: -5px;
  }
}
@media (max-width: 600px) {
  .cashDescription .col-double .col-box .example .payImg.moz-small,
  .cashDescription .col-single .col-box .example .payImg.moz-small {
    -moz-margin-start: -15px;
    -moz-margin-end: -15px;
  }
}
.cashDescription .col-double .col-box .example .payImg_public,
.cashDescription .col-single .col-box .example .payImg_public {
  margin: 5px;
}
@media (max-width: 900px) {
  .cashDescription .col-double .col-box .example .payImg_public,
  .cashDescription .col-single .col-box .example .payImg_public {
    margin: 2px;
  }
}
.cashDescription .col-double .col-box .example .payImg_column,
.cashDescription .col-single .col-box .example .payImg_column {
  margin: 10px 0;
}
@media (max-width: 900px) {
  .cashDescription .col-double .col-box .example .payImg_column,
  .cashDescription .col-single .col-box .example .payImg_column {
    zoom: 0.8;
    -moz-transform: scale(0.8);
    -moz-margin-start: -2px;
    -moz-margin-end: -2px;
  }
}
@media (max-width: 600px) {
  .cashDescription .col-double .col-box .example .payImg_column,
  .cashDescription .col-single .col-box .example .payImg_column {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-margin-start: -5px;
    -moz-margin-end: -5px;
  }
}
.cashDescription .col-single {
  margin-bottom: 40px;
}
.cashDescription .col-single .col-box {
  width: 380px;
  margin: auto;
}
@media (max-width: 800px) {
  .cashDescription .col-single .col-box {
    width: 100%;
  }
}
.cashDescription .title {
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  text-align: center;
}
.information_title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 50px 0;
}
.information_title .table_whole_house_reservation {
  font-size: initial;
  margin: auto;
}
@media (max-width: 560px) {
  .information_title .table_whole_house_reservation tbody {
    font-size: 10px;
  }
}
.information_title .table_whole_house_reservation tr,
.information_title .table_whole_house_reservation td,
.information_title .table_whole_house_reservation th {
  padding: 5px 10px;
  text-align: center;
}
@media (max-width: 800px) {
  .information_title .table_whole_house_reservation tr,
  .information_title .table_whole_house_reservation td,
  .information_title .table_whole_house_reservation th {
    padding: 5px 2px;
  }
}
.information_title .table_whole_house_reservation th {
  background-color: #e6e6e6;
  min-width: 100px;
}
@media (max-width: 800px) {
  .information_title .table_whole_house_reservation th {
    min-width: 60px;
  }
}
@media (max-width: 560px) {
  .information_title .table_whole_house_reservation th {
    min-width: 40px;
  }
}
.information_title .table_whole_house_reservation td.img-wrapper {
  padding: 20px;
}
.information_title .table_whole_house_reservation td.img-wrapper img {
  max-height: 100px;
}
@media (max-width: 800px) {
  .information_title .table_whole_house_reservation td.img-wrapper {
    padding: 15px;
  }
}
@media (max-width: 560px) {
  .information_title .table_whole_house_reservation td.img-wrapper {
    padding: 10px;
  }
}
@media (max-width: 560px) {
  .information_title .table_whole_house_reservation.table_whole_house_reservation_price tbody {
    font-size: 14px;
  }
}
.information_title .table_whole_house_reservation.table_whole_house_reservation_price th {
  min-width: 140px;
}
@media (max-width: 800px) {
  .information_title .table_whole_house_reservation.table_whole_house_reservation_price th {
    min-width: 120px;
  }
}
@media (max-width: 560px) {
  .information_title .table_whole_house_reservation.table_whole_house_reservation_price th {
    min-width: 100px;
  }
}
.information_description {
  text-align: center;
  line-height: 2.4;
}
@media (max-width: 800px) {
  .information_description {
    line-height: 2;
    padding: 0 15px;
  }
}
.detail_titleArea {
  margin-top: 20px;
}
.detail_titleArea .icon {
  width: 50px;
}
.detail_titleArea .title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.detail_container {
  display: grid;
  display: -ms-grid;
  gap: 15px;
  grid-gap: 15px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto;
  grid-auto-flow: dense;
  margin-top: 20px;
  -ms-grid-columns: 2fr 15px 1fr;
  -ms-grid-rows: auto auto;
}
@media (max-width: 800px) {
  .detail_container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr;
    display: block;
  }
}
.detail_item {
  line-height: 2;
}
.detail_item a {
  color: #337ab7;
}
.detail_item tr,
.detail_item td,
.detail_item th {
  padding: 5px 10px;
  text-align: center;
}
@media (max-width: 800px) {
  .detail_item tr,
  .detail_item td,
  .detail_item th {
    padding: 5px 2px;
  }
}
.detail_item th {
  background-color: #e6e6e6;
  min-width: 100px;
}
@media (max-width: 800px) {
  .detail_item th {
    min-width: 60px;
  }
}
@media (max-width: 560px) {
  .detail_item th {
    min-width: 40px;
  }
}
.detail_item.layout,
.detail_item.status {
  grid-column: 2;
  -ms-grid-column: 3;
}
.detail_item.layout {
  grid-row: 1 / 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
}
.detail_item.text {
  padding-top: 30px;
}
@media (max-width: 800px) {
  .detail_item.text {
    padding-top: 0;
  }
}
.detail_item.status {
  grid-row: 3 / 8;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
}
.detail_item.booking {
  -ms-grid-row: 4;
}
.detail_item.info {
  grid-row: 2 / 6;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  padding: 20px 0;
}
@media (max-width: 800px) {
  .detail_item.info {
    padding: 0;
  }
}
.detail_item.discount_plan a {
  display: block;
}
.detail_item.discount_plan a .discount_plan_banner {
  width: 100%;
  padding-top: 10px;
}
@media (max-width: 800px) {
  .detail_item.layout,
  .detail_item.status,
  .detail_item.info {
    grid-column: 1;
    grid-row: auto;
    -ms-grid-column: 1;
  }
}
.detail_item .icon {
  width: 40px;
}
.detail_item .detail_flex_pc {
  padding: 15px 0;
  display: flex;
}
@media (max-width: 800px) {
  .detail_item .detail_flex_pc {
    display: block;
  }
}
.detail_item .detail_flex_pc .title {
  width: 180px;
  line-height: 1.4;
  padding-left: 5px;
}
@media (max-width: 800px) {
  .detail_item .detail_flex_pc .title {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.detail_item .detail_flex_pc .title_main {
  color: #bc9b5d;
  font-size: 17px;
}
@media (max-width: 800px) {
  .detail_item .detail_flex_pc .title_main {
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.detail_item .detail_flex_pc .title_sub {
  font-size: 12px;
}
@media (max-width: 800px) {
  .detail_item .detail_flex_pc .title_sub {
    padding-top: 7px;
    padding-left: 10px;
    font-size: 10px;
  }
}
.detail_item .detail_flex_pc .content {
  flex: 1;
  line-height: 1.4;
  padding-left: 20px;
}
@media (max-width: 900px) {
  .detail_item .detail_flex_pc .content {
    padding-left: 5px;
  }
}
@media (max-width: 800px) {
  .detail_item .detail_flex_pc .content {
    line-height: 1.6;
    letter-spacing: 1.5px;
    padding-top: 0px;
    padding-left: 45px;
  }
}
.detail_item .detail_flex_pc .content strong {
  font-weight: bold;
}
.detail_item .logoArea {
  padding: 20px 0;
  text-align: right;
}
@media (max-width: 800px) {
  .detail_item .logoArea {
    text-align: center;
  }
}
.detail_item .logoArea .text {
  padding-right: 40px;
}
@media (max-width: 800px) {
  .detail_item .logoArea .text {
    padding-right: 0;
    text-align: center;
  }
}
.detail_item .logoArea .logo {
  width: 250px;
  margin-left: auto;
}
@media (max-width: 800px) {
  .detail_item .logoArea .logo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.detail_layoutArea .title {
  text-align: center;
  padding: 2px 0;
  font-size: 16px;
}
@media (max-width: 800px) {
  .detail_layoutArea .title {
    font-size: 14px;
  }
}
.detail_layoutArea .layout {
  padding-bottom: 10px;
  color: #333;
}
.detail_layoutArea .layout .magnification {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10px;
  font-size: 13px;
}
.detail_layoutArea .layout .magnification .icon {
  width: 20px;
  padding-left: 5px;
  height: 15px;
}
.infoArea {
  display: flex;
  padding: 20px 0;
  border-bottom: 2px solid #efefef;
}
@media (max-width: 800px) {
  .infoArea {
    display: block;
  }
  .infoArea:last-of-type {
    border: none;
  }
}
.infoArea .date {
  width: 120px;
}
.infoArea .contentArea {
  flex: 1;
}
.infoArea .contentArea .title {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .infoArea .contentArea .title {
    padding-top: 5px;
  }
}
.infoArea .contentArea .content {
  padding-top: 10px;
}
.basicInfo {
  display: flex;
  padding: 20px 0;
  border-bottom: 2px dashed #efefef;
}
.basicInfo:last-of-type {
  border: none;
}
@media (max-width: 800px) {
  .basicInfo {
    display: block;
    border-bottom: 2px dotted #efefef;
  }
}
.basicInfo .title {
  width: 180px;
  font-weight: 500;
}
.basicInfo .content {
  flex: 1;
}
@media (max-width: 800px) {
  .basicInfo .content {
    padding-top: 5px;
  }
}
.contactArea {
  margin-top: 30px;
}
@media (max-width: 800px) {
  .contactArea {
    padding-left: 0;
  }
}
.faqArea + .faqArea {
  margin-top: 25px;
}
.faqArea .titleArea {
  display: flex;
}
.faqArea .titleArea .iconArea {
  width: 40px;
  background-color: #cebe76;
  text-align: center;
}
@media (max-width: 800px) {
  .faqArea .titleArea .iconArea {
    width: 30px;
  }
}
.faqArea .titleArea .iconArea .text-q {
  font-size: 25px;
  color: #fff;
  font-family: lato;
}
@media (max-width: 800px) {
  .faqArea .titleArea .iconArea .text-q {
    font-size: 20px;
  }
}
.faqArea .titleArea .title {
  width: 100%;
  padding: 5px 15px;
  padding-right: 25px;
  background-color: #efefef;
  font-size: 20px;
}
@media (max-width: 800px) {
  .faqArea .titleArea .title {
    font-size: 17px;
    padding: 5px 7px;
  }
}
.faqArea .content {
  padding: 10px 0 10px 25px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .faqArea .content {
    padding-left: 0;
  }
}
.faqArea a {
  color: #337ab7;
}
.tou_mainArea {
  margin-top: 20px;
  line-height: 1.6;
}
.tou_mainArea ol {
  padding-left: 1em;
}
.tou_mainArea ol.parentheses {
  padding-left: 2em;
}
.tou_mainArea ol.parentheses > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  text-indent: -1.5em;
}
.tou_mainArea ol.parentheses > li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
.tou_mainArea ol.iroha {
  list-style-type: katakana-iroha;
}
.tou_mainArea ol.iroha > li {
  list-style-type: katakana-iroha;
  list-style-position: inside;
  counter-increment: none;
  text-indent: -1em;
}
.tou_mainArea ol.iroha > li:before {
  display: inline;
  content: "";
  padding-left: 5px;
}
.tou_mainArea ul {
  padding-left: 5px;
}
.tou_mainArea strong {
  border-bottom: 1px solid #999999;
  font-weight: normal;
}
.tou_mainArea .pl-0 {
  padding-left: 0;
}
.tou_tableArea {
  margin-top: 20px;
  line-height: 1.6;
}
.tou_tableArea a {
  color: #337ab7;
}
@media (max-width: 560px) {
  .tou_tableArea tbody {
    font-size: 10px;
  }
}
.tou_tableArea tr,
.tou_tableArea td,
.tou_tableArea th {
  padding: 5px 10px;
  text-align: center;
}
@media (max-width: 800px) {
  .tou_tableArea tr,
  .tou_tableArea td,
  .tou_tableArea th {
    padding: 5px 2px;
  }
}
.tou_tableArea th {
  background-color: #e6e6e6;
  min-width: 100px;
}
@media (max-width: 800px) {
  .tou_tableArea th {
    min-width: 60px;
  }
}
@media (max-width: 560px) {
  .tou_tableArea th {
    min-width: 40px;
  }
}
.tou_tableArea .grey {
  background-color: #e6e6e6;
}
.tou_tableArea .min-fixed {
  min-width: 40px;
}
.tou_tableArea .content {
  flex: 1;
}
@media (max-width: 800px) {
  .tou_tableArea .content {
    padding-left: 10px;
  }
}
@media (max-width: 800px) {
  .tou_tableArea .font-sm {
    font-size: 12px;
  }
}
.policy .contact-left {
  width: 150px;
}
.policy .contact-right {
  flex: 1;
}
@media (max-width: 800px) {
  .policy .contact-right {
    margin-left: 15px;
  }
}
.tou_log,
.policy_log {
  line-height: 1.6;
  margin-top: 60px;
  text-align: right;
}
/* bootstrap */
.has-error input,
.has-error textarea {
  border: 2px solid #990000;
  background-color: #ffd3d3;
  color: #990000;
}
.alert {
  line-height: 1.6;
}
.alert-danger {
  margin-top: 5px;
}
/* pagination */
.pagination li {
  display: inline-block;
  margin: 0 3px;
}
.pagination li a {
  color: #333;
  border: 2px solid #e6e6e6;
}
.pagination li:first-child a {
  background-color: #e6e6e6;
  border-radius: 0;
}
.pagination li:last-child a {
  background-color: #e6e6e6;
  border-radius: 0;
}
.pagination li.active a {
  background-color: #e6e6e6;
  border: 2px solid #e6e6e6;
  color: #333;
}
.pagination li.jump a {
  border: none;
  padding: 6px;
}
/* 必須ボタン */
.label-required {
  background-color: #ea1121;
  color: white;
  font-size: 12px;
  border-radius: 0;
  position: absolute;
  width: 40px;
  height: 22px;
  line-height: 16px;
  font-weight: normal;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 800px) {
  .label-required {
    position: relative;
    right: inherit;
    top: -2px;
    left: 10px;
    -ms-transform: translateY(0);
  }
}
/* table */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}
/* PAY.JP */
#payjp_checkout_box input[type="button"]:first-of-type {
  width: 320px;
  height: 50px;
  font-size: 16px;
  margin: 50px auto;
  display: block;
}
@media (max-width: 800px) {
  #payjp_checkout_box input[type="button"]:first-of-type {
    width: 95%;
    font-size: 14px;
  }
}
/* slick */
.carousel {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 40px;
}
.carousel .slick-slide {
  position: relative;
  background-color: black;
  margin: 0 4px;
  outline: none;
}
@media (max-width: 800px) {
  .carousel .slick-slide {
    margin: 0;
  }
}
.carousel .slick-slide:hover .note {
  opacity: 0;
}
.carousel .slick-slide img {
  width: 100%;
  margin: auto;
  opacity: 0.4;
}
@media (max-width: 800px) {
  .carousel .slick-slide img {
    filter: brightness(100%);
  }
}
.carousel .slick-slide .note {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 0.5s ease;
}
.carousel .slick-slide.slick-current img {
  opacity: 1;
}
.carousel .slick-dots li {
  margin: 0;
}
.carousel .slick-dots li.slick-active button:before {
  color: #bc9b5d;
}
.carousel .slick-prev,
.carousel .slick-next {
  display: inline-block;
  padding-left: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  z-index: 1001;
}
.carousel .slick-prev::before,
.carousel .slick-next::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -7px;
}
.carousel .slick-prev:before,
.carousel .slick-next:before {
  border-top: solid 4px #fff;
  border-right: solid 4px #fff;
  width: 20px;
  height: 20px;
  opacity: 1;
}
@media (max-width: 800px) {
  .carousel .slick-prev:before,
  .carousel .slick-next:before {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
  }
}
.carousel .slick-prev:before {
  transform: rotate(225deg);
}
.carousel .slick-next {
  right: 370px;
}
@media (max-width: 1200px) {
  .carousel .slick-next {
    right: 230px;
  }
}
@media (max-width: 900px) {
  .carousel .slick-next {
    right: 180px;
  }
}
@media (max-width: 800px) {
  .carousel .slick-next {
    right: 20px;
  }
}
.carousel .slick-prev {
  left: 390px;
}
@media (max-width: 1200px) {
  .carousel .slick-prev {
    left: 240px;
  }
}
@media (max-width: 900px) {
  .carousel .slick-prev {
    left: 190px;
  }
}
@media (max-width: 800px) {
  .carousel .slick-prev {
    left: 40px;
  }
}
/* 一棟貸切ページのスマホ対応 */
@media (max-width: 767px) {
  .local-experience-item > div {
    display: block !important;
  }
  .local-experience-item > div div:first-child {
    text-align: center;
    margin-bottom: 15px;
  }
  .local-experience-item > div div:first-child img {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
  }
  .local-experience-item > div div:last-child {
    padding-left: 0 !important;
  }
  .row .col-md-3 > div {
    height: 300px !important;
    padding: 20px 15px !important;
  }
  .row .col-md-3 h3 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }
  .row .col-md-3 p {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  .row .col-md-3 i {
    font-size: 40px !important;
  }
}
