@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 62.5%;
  min-height: 100vh;
}

html, body {
  height: 100%;
  width: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
  margin: auto;
}

b {
  font-weight: bold;
}

input[type=submit], input[type=text],
input[type=email], input[type=button], input[type=password] {
  appearance: none;
}

/*------------------------------
	base
------------------------------*/
a {
  color: #444545;
  text-decoration: none;
}

.mb0 {
  margin: 0 0 0 0;
}

.mb5 {
  margin: 0 0 5px 0;
}

.mb10 {
  margin: 0 0 10px 0;
}

.mb15 {
  margin: 0 0 15px 0;
}

.mb20 {
  margin: 0 0 20px 0;
}

.mb30 {
  margin: 0 0 30px 0;
}

.mb40 {
  margin: 0 0 40px 0;
}

.mb50 {
  margin: 0 0 50px 0;
}

.mb60 {
  margin: 0 0 60px 0;
}

.mb70 {
  margin: 0 0 70px 0;
}

.mb80 {
  margin: 0 0 80px 0;
}

.mb90 {
  margin: 0 0 90px 0;
}

.mb100 {
  margin: 0 0 100px 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #444545;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p {
  margin: 0 0 10px;
}

/*------------------------------
	header
------------------------------*/
header {
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
header h1 {
  width: 150px;
  padding: 10px;
}
header .contact {
  display: none;
}

.open #gnav {
  z-index: 100;
  visibility: visible;
}

#gnav {
  visibility: hidden;
  position: fixed;
  display: table;
  vertical-align: middle;
  color: #fff;
  top: 0;
  height: 100%;
  width: 100%;
}
#gnav ul {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0 0 30px;
}
#gnav li:last-child {
  margin-top: 20px;
}
#gnav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px;
}

#nav-toggle {
  display: block;
  position: fixed;
  top: 10px;
  right: 14px;
  width: 28px;
  height: 30px;
  cursor: pointer;
  padding: 10px 11px;
  z-index: 101;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  left: 5px;
  zoom: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
#nav-toggle i {
  color: #fff;
  font-size: 1.1rem;
  position: absolute;
  top: 24px;
  left: 4px;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 9px;
}

#nav-toggle span:nth-child(3) {
  top: 18px;
}

.open #nav-toggle {
  background: transparent;
}
.open #nav-toggle span {
  background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  zoom: 1;
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  zoom: 1;
}

#nav-bg {
  content: "";
  width: 6000px;
  height: 6000px;
  margin-right: -3000px;
  margin-top: -3000px;
  top: 25px;
  right: 25px;
  display: block;
  position: fixed;
  background: #ff8500;
  border-radius: 50%;
  transition: all 0.3s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0.02);
  transform: scale(0.02);
}

.open #nav-bg {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

/*------------------------------
	footer
------------------------------*/
footer {
  position: relative;
  bottom: 100px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #fa8a02 6.74%, #fbbd33 100%);
  padding: 40px 0px 0px;
  color: #fff;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -6px 7px 0 rgba(0, 0, 0, 0.1);
}
footer .inner {
  padding: 0 20px 40px;
}
footer .inner .text {
  margin: 0 0 40px;
}
footer .contact {
  padding: 20px;
  border-radius: 20px;
}
footer .contact .tel {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}
footer .bottom {
  background: linear-gradient(90deg, #f03d6c 0%, #f67245 100%);
  padding: 30px 0;
  text-align: center;
}
footer .bottom li {
  margin: 0 10px 10px;
  display: inline-block;
}
footer .bottom a {
  color: #fff;
}

.contact {
  background: #fff;
  color: #444545;
}
.contact span {
  border-bottom: 3px solid #ff8500;
  border-top: 3px solid #ff8500;
  padding: 5px 0;
  font-size: 1.4rem;
  text-align: center;
}
.contact .tel {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: center;
}
.contact .tel a {
  color: #ff8500;
  font-size: 2.5rem;
  font-weight: 700;
}

/*------------------------------
	base
------------------------------*/
main {
  padding-bottom: 150px;
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 20px 90px;
}

.center {
  text-align: center;
}

.title01 {
  display: table;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  padding: 0 40px;
  margin: 0 auto 40px;
  position: relative;
}
.title01:before, .title01:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 24px;
  height: 4px;
  background: #ff8500;
  transform: rotate(-60deg);
  border-radius: 10px;
}
.title01:before {
  left: 0;
}
.title01:after {
  right: 0;
}

.title02 {
  display: table;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0 60px;
  margin: 0 auto 40px;
  position: relative;
}
.title02:before, .title02:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 24px;
  height: 4px;
  background: #fff;
  transform: rotate(-60deg);
  border-radius: 10px;
}
.title02:before {
  left: 0;
}
.title02:after {
  right: 0;
}

.title03 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8500;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.title03::before, .title03::after {
  content: "";
  flex-grow: 0.05;
  height: 1px;
  background: #ff8500;
}
.title03::before {
  margin-right: 20px;
}
.title03::after {
  margin-left: 20px;
}

.btn01 {
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 100px;
  background: #fff;
}
.btn01 a {
  display: block;
  padding: 15px;
  background: linear-gradient(90deg, #ff403a 5.62%, #ff9807 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #ff8500;
  border-radius: 100px;
}
.btn01 a:hover {
  background: linear-gradient(90deg, #ff6b66 5.62%, #ffd599 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn02 {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.btn02 a {
  display: block;
  padding: 15px;
  background: #f44960;
  color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border: 1px solid #f44960;
}
.btn02 a:hover {
  background: #fff;
  color: #f44960;
}

.btn02-ul li {
  max-width: none;
  margin: 0 0 20px;
}
.btn02-ul li:last-child {
  margin: 0;
}

.bg1 {
  padding: 10px 0 10px;
  background: #fff6e8;
}

.bg2 {
  padding: 10px 0 10px;
  background: linear-gradient(90deg, #fa8a02 6.74%, #fbbd33 100%);
  color: #fff;
}

.bg3 {
  padding: 10px 0 0px;
  background: url(../img/rental/bg01.png) no-repeat left top, url(../img/rental/bg02.png) no-repeat right bottom;
  background-size: 35%, 35%;
}

.bg4 {
  background: #fff;
}

.bg {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 75%, #fff6e8 75%);
}

em {
  color: #ff8500;
  font-weight: 700;
}
em.catch {
  font-size: 2.2rem;
}

.ol-list {
  padding: 0 0 0 25px;
  margin: 0 0 20px;
}
.ol-list > li {
  list-style: decimal;
}

.ul-list {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}
.ul-list > li {
  list-style-type: disc;
}

.link {
  color: #ff8500;
  text-decoration: underline;
}

br.sp {
  display: block;
}
br.pc {
  display: none;
}

/*------------------------------
	top
------------------------------*/
.cta {
  background: linear-gradient(90deg, #ff403a 5.62%, #ff9807 100%);
  padding: 60px 0px 0;
  text-align: center;
}
.cta .inner {
  background: url(../img/rental/bg-btn-l.png) no-repeat center bottom;
  padding: 0 30px 60px;
}
.cta a:hover {
  opacity: 0.9;
}

.about {
  margin: 0 auto 50px;
}
.about .box .text {
  margin: 0 0 30px;
}

.title-border {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
  margin: 0 0 30px;
}
.title-border span {
  border-bottom: 6px solid;
  border-image: linear-gradient(to right, #ff403a 0%, #ff9807 100%);
  border-image-slice: 1;
}

.worries {
  position: relative;
  padding: 200px 0;
}
.worries .photo {
  position: absolute;
  top: -120px;
  left: 0;
}
.worries .title {
  margin-top: 300px;
  font-size: 2.2rem;
}

.support {
  position: absolute;
  top: 128%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.support li {
  background: #fff;
  color: #444545;
  font-weight: 700;
  font-size: 2.2rem;
  padding: 10px;
  text-align: center;
  border: 5px solid #ff403a;
  border-radius: 30px;
  margin: 0 0 30px;
}
.support li img {
  width: 120px;
  margin: 0 auto;
}

.pb {
  padding-top: 580px;
}

.point-list {
  max-width: 1400px;
  margin: 0 auto;
}
.point-list .point:last-of-type {
  margin: 0;
}

.point {
  margin: 0 0 60px;
}
.point .photo {
  text-align: center;
  margin: 0 auto;
  width: 80%;
}
.point .box {
  background: #fff;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  border: 3px solid #7d6b49;
  border-top: 0;
}
.point h3 {
  color: #ff8500;
  font-weight: 700;
  font-size: 2.2rem;
  padding: 0 0 5px;
  margin: 0 0 10px;
  border-bottom: 3px solid #7d6b49;
}

.read {
  margin: 0 0 60px;
}
.read p {
  margin: 0 0 20px;
}

.roomlist {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.roomlist > li {
  background: #fff;
  border-radius: 0 0 10px 10px;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  margin: 0 0 60px;
}
.roomlist > li a:hover {
  opacity: 0.9;
}
.roomlist > li .cost {
  position: absolute;
  top: -15px;
  right: 0;
  display: flex;
  gap: 8px;
}
.roomlist > li .cost li {
  color: #fff;
  background: linear-gradient(90deg, #ff403a 5.62%, #ff9807 100%);
  border-radius: 8px;
  font-size: 1.6rem;
  padding: 5px 8px;
  text-align: center;
}
.roomlist .deta {
  padding: 15px;
  font-size: 1.5rem;
}
.roomlist .deta .name {
  color: #ff8500;
  font-weight: 700;
}
.roomlist .deta .price {
  font-weight: 700;
  font-size: 2.2rem;
}

.flow {
  text-align: center;
  margin: 0 auto 60px;
}
.flow li {
  background: url(../img/rental/ic_check.png) no-repeat left center;
  background-size: 20px;
  padding: 0 0 0 25px;
  display: table;
  margin: 0 auto 10px;
  font-size: 2rem;
}
.flow .title {
  background: none;
  padding: 0;
  margin: 0 auto 30px;
}

.step-list {
  color: #444545;
}
.step-list .step:last-of-type {
  margin: 0;
}

.step {
  position: relative;
  margin: 0 0 100px;
}
.step span {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 100px;
  margin: 0 0 0 -50px;
  z-index: 1;
}
.step .box {
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px 30px;
  position: relative;
}
.step .box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border: solid 60px transparent;
  border-top: solid 35px #fff;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}
.step .box .photo {
  margin: 0 auto 10px;
  width: 100px;
}
.step .box h3 {
  color: #ff8500;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.step .last::after {
  content: none;
}

.voice {
  max-width: 1600px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.voice-use li {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  margin: 0 0 30px;
}
.voice-use li:last-child {
  margin: 0;
}
.voice-use li .icon {
  width: 80px;
  text-align: center;
  margin: 0 auto 15px;
}

.faq {
  margin: 0 auto 50px;
}
.faq div {
  border: 1px solid #ff8500;
  border-radius: 20px;
  padding: 15px;
  margin: 0 0 20px;
  background: #fff;
}
.faq dt {
  font-size: 1.8rem;
  font-family: 700;
  margin: 0 0 15px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 15px;
}
.faq dt::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/rental/faq_q.png) no-repeat left center;
  background-size: 20px;
}
.faq dd {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 15px;
}
.faq dd::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/rental/faq_a.png) no-repeat left center;
  background-size: 20px;
}
.faq img {
  margin: 5px 0 0;
}

/*------------------------------
	company
------------------------------*/
.main-title {
  background: linear-gradient(90deg, #fa8a02 5.62%, #fbbd33 100%);
  border-radius: 0 0 50px 50px;
  color: #fff;
  padding: 30px 0;
}
.main-title .title01 {
  margin: 0 auto;
}
.main-title .title01:before, .main-title .title01:after {
  background: #fff;
}

#pankuzu {
  max-width: 1200px;
  padding: 0 15px;
  margin: 20px auto 10px;
  box-sizing: border-box;
}
#pankuzu li {
  font-size: 1.5rem;
  display: inline-block;
  font-weight: 700;
}
#pankuzu li::after {
  content: ">";
  padding: 0 10px 0 15px;
}
#pankuzu li:last-child::after {
  content: none;
}
#pankuzu a {
  text-decoration: underline;
}

.message {
  background: #fefbf5;
  padding: 30px;
}
.message p {
  margin: 0 0 20px;
}

.info {
  background: #fff;
  padding: 20px;
}
.info dt {
  padding: 0 0 10px;
}
.info dd {
  padding: 0 0 10px;
  margin: 0 0 20px;
  border-bottom: 1px solid #444545;
}

/*------------------------------
	property
------------------------------*/
.property {
  padding: 60px 20px 0;
}

.wp-pagenavi {
  margin: 50px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.wp-pagenavi span.current {
  border: 2px solid #ff8500;
  background: #ff8500;
  color: #fff;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #fff;
  color: #ff8500;
  border: 2px solid #ff8500;
  width: 36px;
  height: 36px;
  margin: 0px 5px;
  border-radius: 50%;
}
.wp-pagenavi .nextpostslink {
  border: 0;
  background: none;
}
.wp-pagenavi .previouspostslink {
  border: 0;
  background: none;
}

.detail h3 {
  color: #ff8500;
  font-weight: 700;
  margin: 0 0 30px;
}
.detail .price {
  display: flex;
}
.detail .price li {
  margin: 0 20px 15px 0;
}

.slide-box {
  width: 100%;
  margin: 0 auto;
}
.slide-box .slick-arrow {
  background-color: transparent;
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
}
.slide-box .slick-prev {
  border-bottom: 16px solid transparent;
  border-left: 0;
  border-right: 16px solid #444545;
  border-top: 16px solid transparent;
  left: 0px;
}
.slide-box .slick-next {
  border-bottom: 16px solid transparent;
  border-left: 16px solid #444545;
  border-right: 0;
  border-top: 16px solid transparent;
  right: 0px;
}
.slide-box button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  color: transparent;
}
.slide-box .thumbnail {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.table01 {
  width: 100%;
  border-top: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
  border-right: 1px solid #b2b2b2;
  margin: 0 auto 30px;
}
.table01 th {
  width: 50px;
  padding: 10px;
  background: #fff6e8;
  border-bottom: 1px solid #b2b2b2;
}
.table01 td {
  padding: 10px;
  border-bottom: 1px solid #b2b2b2;
}

.access iframe {
  width: 100%;
  height: 250px;
}

/*------------------------------
	contact
------------------------------*/
.form-box {
  padding: 40px 15px;
  font-size: 1.8rem;
}
.form-box form input {
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
  border: 1px solid #b2b2b2;
  border-radius: 6px;
  height: 30px;
}
.form-box form input[type=radio] {
  width: auto;
  height: auto;
}
.form-box form select {
  padding: 4px;
  border: 1px solid #b2b2b2;
  border-radius: 6px;
}
.form-box form textarea {
  width: 100% !important;
  height: 120px !important;
  box-sizing: border-box;
  padding: 4px;
  border: 1px solid #b2b2b2;
  border-radius: 6px;
}
.form-box form input[type=checkbox] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.form-box form label {
  display: flex;
}
.form-box dl {
  margin: 0 0 40px;
}
.form-box dt {
  padding: 10px 0 10px;
  font-weight: 700;
  font-size: 1.6rem;
}
.form-box dd {
  padding: 0 0 20px;
  border-bottom: 1px solid #a7a7a7;
}
.form-box .must {
  background: #f44960;
  display: table;
  font-size: 1.4rem;
  margin: 5px 0 0;
}
.form-box .notmust {
  background: #b2b2b2;
  color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  display: table;
  padding: 2px 5px;
  margin: 5px 0 0;
}
.form-box .submit {
  background: #f44960;
  color: #fff;
  display: block;
  min-width: 300px;
  width: 50%;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-shadow: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  border: 0;
  margin: 0 auto;
  border-radius: 50px;
}
.form-box p {
  margin: 0 0 40px;
}

.mfp_element_button {
  margin: 0 5px;
  border: 0;
}

#mfp_button_send {
  background: #ba1b21;
  color: #fff;
}

#mfp_confirm_table {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  /*------------------------------
  	header
  ------------------------------*/
  header .contact {
    font-size: 1.3rem;
  }
  header .contact .tel {
    margin: 0 0 5px;
  }
  header .contact .tel a {
    font-size: 3.2rem;
  }
  #gnav #gnav-list {
    margin: 0 auto;
    width: 270px;
  }
  /*------------------------------
  	footer
  ------------------------------*/
  footer {
    bottom: 400px;
    left: 0;
    width: 100%;
    padding: 50px 0px 0px;
    border-radius: 60px 60px 0 0;
  }
  footer .inner {
    padding: 0 30px 50px;
    display: grid;
    grid-template-columns: 340px 50%;
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
  }
  footer .inner .text {
    font-size: 2rem;
  }
  footer .inner .contact {
    padding: 50px 30px 0px;
    border-radius: 35px;
    font-size: 2rem;
  }
  footer .inner .title02 {
    margin: 0 auto 40px;
  }
  footer .bottom {
    padding: 50px 0;
  }
  footer .bottom li {
    font-size: 2rem;
    margin: 0 30px;
  }
  footer .bottom span {
    display: block;
    margin: 20px 0 0;
  }
  /*------------------------------
  	base
  ------------------------------*/
  main {
    padding-bottom: 450px;
  }
  .title01 {
    font-size: 3.2rem;
    padding: 0 60px;
    margin: 0 auto 60px;
  }
  .title01:before, .title01:after {
    width: 44px;
    height: 5px;
  }
  .title02 {
    font-size: 3.2rem;
    margin: 0 auto 60px;
  }
  .title02:before, .title02:after {
    width: 44px;
    height: 5px;
  }
  .title03 {
    font-size: 3rem;
    margin: 0 0 60px;
  }
  .btn01 {
    max-width: 400px;
  }
  .btn02-ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
  }
  .btn02-ul li {
    margin: 0;
  }
  .bg3 {
    padding: 10px 0 0px;
    background: url(../img/rental/bg01.png) no-repeat left top, url(../img/rental/bg02.png) no-repeat right bottom;
  }
  em.catch {
    font-size: 3.6rem;
  }
  br.sp {
    display: none;
  }
  br.pc {
    display: block;
  }
  /*------------------------------
  	top
  ------------------------------*/
  .cta .inner {
    padding: 0 20% 60px;
  }
  .about {
    max-width: 1600px;
    margin: 0 auto 130px;
  }
  .about .box {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 50px;
    justify-content: center;
  }
  .about .box .photo {
    order: 1;
  }
  .about .box .text {
    order: 2;
    margin: 0;
  }
  .title-border {
    font-size: 3.6rem;
  }
  .worries {
    padding: 200px 0;
  }
  .worries .photo {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
  }
  .worries .title {
    margin-top: 0;
    font-size: 3.2rem;
  }
  .support {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .support li img {
    width: 150px;
  }
  .pb {
    padding-top: 150px;
  }
  .point {
    margin: 0 0 120px;
  }
  .point .box {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 40px;
  }
  .point h3 {
    font-size: 3rem;
  }
  .point .photo {
    width: 400px;
  }
  .read {
    margin: 0 0 100px;
  }
  .read p {
    margin: 0 0 20px;
  }
  .roomlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 40px;
    margin: 0 auto 60px;
  }
  .roomlist li {
    margin: 0;
  }
  .roomlist .deta {
    padding: 15px;
    font-size: 2rem;
  }
  .roomlist .deta .price {
    font-size: 3.6rem;
  }
  .flow {
    font-size: 3rem;
    margin: 0 auto 120px;
  }
  .flow li {
    background: url(../img/rental/ic_check.png) no-repeat left center;
    background-size: 30px;
    padding: 0 0 0 35px;
    display: table;
    margin: 0 auto 10px;
  }
  .step span {
    position: absolute;
    top: -35px;
    left: 40px;
    width: 150px;
    margin: 0;
  }
  .step .box {
    padding: 80px 40px 30px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
    align-items: center;
  }
  .step .box .photo {
    margin: 0;
    width: auto;
  }
  .step .box h3 {
    font-size: 3.2rem;
  }
  .voice-use li {
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    font-size: 2.6rem;
    padding: 25px;
  }
  .voice-use li .icon {
    width: auto;
    text-align: left;
    margin: 0;
  }
  .faq div {
    margin: 0 0 60px;
    padding: 20px 30px;
  }
  .faq dt {
    font-size: 2.6rem;
    margin: 0 0 15px;
    grid-template-columns: 40px 1fr;
    gap: 30px;
  }
  .faq dt::before {
    content: "";
    width: 40px;
    height: 42px;
    background: url(../img/rental/faq_q.png) no-repeat left center;
    background-size: 40px;
  }
  .faq dd {
    grid-template-columns: 40px 1fr;
    gap: 30px;
  }
  .faq dd::before {
    content: "";
    width: 40px;
    height: 42px;
    background: url(../img/rental/faq_a.png) no-repeat left center;
    background-size: 40px;
  }
  .faq img {
    margin: 0;
  }
  /*------------------------------
  	company
  ------------------------------*/
  .main-title {
    border-radius: 0 0 100px 100px;
    padding: 50px 0;
  }
  #pankuzu {
    margin: 40px auto 10px;
  }
  #pankuzu li {
    font-size: 1.6rem;
  }
  .message {
    padding: 30px 100px;
  }
  .message p {
    margin: 0 0 40px;
  }
  .info {
    padding: 40px 100px;
    display: grid;
    grid-template-columns: 150px 1fr;
    font-size: 1.8rem;
  }
  .info dt {
    padding: 25px 0;
    border-bottom: 1px solid #444545;
  }
  .info dd {
    padding: 25px 0;
    margin: 0;
  }
  /*------------------------------
  	property
  ------------------------------*/
  .property {
    padding: 120px 0 0;
  }
  .detail h3 {
    font-size: 3rem;
    margin: 0 0 50px;
  }
  .detail .price {
    display: flex;
    gap: 50px;
    align-items: baseline;
    margin: 0 0 40px;
  }
  .detail .price li {
    margin: 0;
    font-size: 2.6rem;
  }
  .detail .price li:first-child {
    font-size: 3.6rem;
  }
  .slide-box {
    max-width: 70%;
    width: 85%;
    margin: 0 auto;
  }
  .table01 {
    margin: 0 0 60px;
  }
  .table01 th {
    width: 130px;
  }
  .access iframe {
    height: 400px;
  }
  /*------------------------------
  	contact
  ------------------------------*/
  .form-box {
    padding: 80px 0;
  }
  .form-box form {
    max-width: 900px;
    margin: 0 auto;
  }
  .form-box form label {
    display: inline-block;
  }
  .form-box dl {
    display: grid;
    grid-template-columns: 300px 1fr;
    padding: 0 20px;
  }
  .form-box dt {
    padding: 25px 0;
    border-bottom: 1px solid #a7a7a7;
  }
  .form-box dd {
    padding: 25px 0;
  }
  .form-box p {
    text-align: center;
    margin: 0 0 70px;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 2.6rem;
  }
  /*------------------------------
  	header
  ------------------------------*/
  header {
    padding: 30px 25px 20px;
  }
  header .logo {
    width: 280px;
    padding: 0;
  }
  header .inner {
    display: grid;
    grid-template-columns: 280px 70%;
    align-items: center;
    justify-content: space-between;
  }
  header .contact {
    display: grid;
    grid-template-columns: 1fr 35%;
    gap: 20px;
  }
  header .contact div {
    margin: 0 0 0 auto;
  }
  header .contact .tel a {
    font-size: 3.6rem;
  }
  header .contact b {
    font-weight: 400;
    font-size: 1.4rem;
  }
  header .contact .btn02 {
    max-width: 100%;
    margin: 0;
  }
  #gnav {
    visibility: initial;
    position: static;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 60px;
    background: #fff;
  }
  #gnav #gnav-list {
    margin: 20px 0 0;
    width: auto;
  }
  #gnav ul {
    display: block;
    width: 100%;
    position: static;
    z-index: 1;
    transform: none;
    text-align: center;
    padding: 0;
  }
  #gnav li {
    display: inline-block;
    border-bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 25px 0 0;
  }
  #gnav li a {
    padding: 0px;
    color: #444545;
  }
  #gnav li:last-child {
    display: none;
  }
  #nav-toggle,
  #nav-bg {
    display: none;
  }
  /*------------------------------
  	footer
  ------------------------------*/
  footer {
    padding: 70px 0px 0px;
    border-radius: 100px 100px 0 0;
  }
  footer .inner {
    padding: 0 30px 70px;
    grid-template-columns: 480px 50%;
    gap: 60px;
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
  }
  footer .inner .text {
    font-size: 2.4rem;
  }
  footer .inner .contact {
    padding: 50px 40px 0px;
    border-radius: 55px;
  }
  footer .inner .contact .tel a {
    font-size: 3.6vw;
  }
  footer .inner .title02 {
    margin: 0 auto 60px;
  }
  footer .bottom {
    padding: 70px 0;
  }
  footer .bottom li {
    font-size: 3rem;
    margin: 0 30px;
  }
  footer .bottom span {
    font-size: 2rem;
    margin: 20px 0 0;
  }
  /*------------------------------
  	base
  ------------------------------*/
  section {
    padding: 150px 0 150px;
  }
  .title01 {
    font-size: 4.6rem;
    margin: 0 auto 120px;
  }
  .title02 {
    font-size: 4.6rem;
    margin: 0 auto 120px;
  }
  .title03 {
    font-size: 3.6rem;
  }
  /*------------------------------
  	top
  ------------------------------*/
  .cta .inner {
    background: url(../img/rental/bg-btn-l.png) no-repeat left bottom, url(../img/rental/bg-btn-r.png) no-repeat right bottom;
    padding: 0 0 60px;
  }
  .title-border {
    font-size: 4.6rem;
  }
  .worries {
    padding: 250px 0;
  }
  .worries .title {
    font-size: 4.6rem;
  }
  .support {
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 80%;
  }
  .support li img {
    width: 150px;
    margin: 0 auto;
  }
  .point .box {
    grid-template-columns: 400px 1fr;
    gap: 40px;
    padding: 50px;
  }
  .point h3 {
    font-size: 3.6rem;
  }
  .point .photo {
    width: auto;
  }
  .flow {
    font-size: 3.6rem;
  }
  .step span {
    top: -50px;
    left: 40px;
    width: 200px;
  }
  .step .box {
    padding: 80px 40px 50px;
    gap: 60px;
  }
  .step .box h3 {
    font-size: 4.6rem;
  }
  /*------------------------------
  	property
  ------------------------------*/
  .property {
    padding: 40px 100px;
  }
  /*------------------------------
  	contact
  ------------------------------*/
}
@media screen and (min-width: 1600px) {
  /*------------------------------
  	top
  ------------------------------*/
  .voice {
    padding-left: 0;
    padding-right: 0;
  }
}