@charset "utf-8";
.rental_area .rental_area_map{
	display: flex;
	justify-content: center;
  	gap: 40px 50px;
	flex-wrap: wrap;
}
.rental_area .rental_area_map > div{
	width: calc(100% / 2 - 40px)
}
.rental_area .rental_area_map div table:last-of-type{
	display: none;
}
.rental_area .ttl{
	font-weight: bold;
	font-size: 20px;
}
.rental_area .ttl span{
	background-color: #13AE67;
	margin-right: 10px;
	padding: 2px 10px;
	color: #fff;
	font-size: 20px;
}
.rental_area .rental_map{
	width: 550px;
	margin-block: 10px 15px;
}
.rental_area .rental_map img{
	width: 100%;
}
.rental_area .rental_btn{
	display: table;
	margin: 10px auto;
}
.rental_area .rental_btn a{
	background-color: var(--b_color);
	padding: 10px 30px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}
.rental_area .rental_btn a:hover{
	background-color: #13AE67;
}
.rental_area .rental_btn_02{
	display: table;
	background-color: var(--b_color);
	padding: 10px 30px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
  	text-align: center;
  	margin-inline: auto;
}
.rental_area .small_txt{
	font-size: 1.4rem;
}
.rental_area .rental_table{
	  width: min(500px, 100%);
	border-top: 1px solid var(--base);
  	border-right: 1px solid var(--base);
  	border-spacing: 0 0;
	margin: 40px 0 10px;
}
.rental_area .rental_table td{
	border-left: 1px solid var(--base);
  	border-bottom: 1px solid var(--base);
  	padding: 10px;
}
.rental_area .rental_kukaku{
	width: min(100%, 1000px);
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-inline: auto;
	margin: 30px auto 60px;
}
.rental_area .rental_kukaku li{
	display: flex;
	justify-content: center;
	gap: 10px;
}
.rental_area .rental_kukaku li img{
	width: 100%;
}

summary {
	display: block;
	list-style: none;
	cursor: pointer;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display:none;
}

.rental_form{
	width: min(800px, 100%);
	margin-inline: auto;
	border-radius: 20px;
	background-color: #E8E8E8;
	padding: 40px 50px;
}
.rental_form dl{
	display: flex;
	margin-block: 0 15px;
}
.rental_form dt{
	width: 220px;
	font-weight: normal !important;
}
.rental_form dd{
	width: 500px;
}
.rental_form input, .rental_form textarea{
	background-color: #fff;
	border-radius: 10px;
	padding: 5px 10px;
	width: 100%;
}
.rental_form input.file{
	background-color: inherit;
}
.rental_form input.file::file-selector-button{
	color: #fff;
  background-color: #666;
  padding: 10px;
  border: none;
  border-radius: 10px;
}
.rental_form dl.rental_form_textbox{
	display: flex;
	flex-flow: column;
}
.rental_form dl.rental_form_textbox dt{
	width: auto;
}
.rental_form dl.rental_form_textbox dd{
	margin-left: 220px;
}
.rental_submit{
	display: table;
	margin-top: 60px;
	margin-inline: auto;
}
.rental_submit input{
	background-color: var(--b_color);
  color: #fff;
  padding: 10px 40px;
  font-weight: bold;
}
.rental_form select.rental_select{
	background-color: #c0bebe;
  border-radius: 10px;
  padding: 5px 10px;
}
.rental_form_ttl{
	font-weight: bold;
	font-size: 3rem;
	text-align: center;
	margin-block: 50px 5px;
}
.rental_form_txt{
	margin-bottom: 30px;
	width: min(700px, 100%);
	margin-inline: auto;
}
@media screen and (max-width: 767px) {
.rental_area .rental_area_map {
  gap: 0px;
  flex-flow: column;
}
.rental_area .rental_map{
	width: 100%;
}
.rental_area .rental_area_map > div{
	width: 100%;
}
.rental_form_ttl {
  font-size: 2rem;
}
.rental_form {
  padding: 40px 8%;
}
.rental_form dl {
  flex-flow: column;
}
.rental_form dt {
  margin-bottom: 5px;
}
.rental_form dd {
  width: 100%;
}
.rental_form dl.rental_form_textbox dd {
  margin-left: 0px;
}
}

/* ツールチップ */
/* START TOOLTIP STYLES */
[tooltip] {
}


/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  _bottom: 100%;
  _border-bottom-width: 0;
  _border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}


/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.tooltip_map_wrap{
	position: relative;
	border:1px solid #fff
}
.tooltip_map_wrap .span_01 {
  position: absolute;
  top: -200px;
  left: 400px;
}
.tooltip_map_wrap .span_02 {
  position: absolute;
  top: -50px;
  left: 300px;
}
.tooltip_map_wrap .span_03 {
  position: absolute;
  top: -100px;
  left: 450px;
}

@media screen and (max-width: 767px) {
.tooltip_map_wrap .span_01 {
  position: absolute;
  top: -150px;
  left: 250px;
}
.tooltip_map_wrap .span_02 {
  position: absolute;
  top: -35px;
  left: 200px;
}
.tooltip_map_wrap .span_03 {
  position: absolute;
  top: -70px;
  left: 300px;
}
}






