﻿@charset "utf-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: 'Josefin Sans', sans-serif;
	font-family: 'Noto Sans JP', sans-serif;
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', '游ゴシック Medium', 'Yu Gothic Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-family: 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 18px;
	font-weight: 500;
	color: #231815;
	line-height: 1;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}

#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
}

img[src$=".svg"] {
	width: 100%;
}

* {
	box-sizing: border-box;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.reverse {
	flex-flow: row-reverse;
}

.instagram {
	min-height: 30px;
}
footer .instagram {
	margin-top: 25px;
}
.instagram a {
	display: inline-block;
	height: 100%;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	line-height: 30px;
	padding-left: 32px;
}
header .instagram a {
	background-image: url(../img/common/instagram.svg);
}
footer .instagram a {
	background-image: url(../img/common/instagram_w.svg);
	padding-left: 40px;
}
@media screen and (max-width: 1000px) {
	footer .instagram {
		max-width: 300px;
		margin: 25px auto 0;
	}

}

@media screen and (max-width: 768px) {

	html,
	body {
		font-size: 16px;
	}
	header nav.flex li.instagram a {
		background-position: left 15px center;
		padding: 11px 15px 11px 47px;
	}
}

/* header
------------------------------------------------------------*/
header {
	width: 100%;
	height: 170px;
}

header .inner {
	height: 100%;
	padding-left: 4%;
	justify-content: space-between;
	align-items: center;
}
header .logo a {
	display: inline-block;
}

@media screen and (min-width: 769px) {
    header .logo_txt {
        font-size: 14px;
    }
    header .logo a {
        margin-top: 15px;
    }
	header .logo img {
		width: 258px;
	}

	header nav {
		width: calc(100% - 300px);
		max-width: 1180px;
		padding-bottom: 70px;
		justify-content: space-between;
	}

	header ul {
		width: calc(100% - 400px);
		height: 100px;
		border-bottom: 1px dashed #231815;
		padding: 0 10px;
		justify-content: center;
		align-items: center;
		position: relative;
	}

	header ul:before {
		content: '';
		width: 1px;
		height: 6px;
		background-color: #231815;
		position: absolute;
		left: -0.5px;
		bottom: -3px;
	}

	header ul li:after {
		content: '|';
	}

	header ul li:last-child:after {
		content: none;
	}

	header ul li a {
		font-size: 19px;
		font-weight: 500;
		margin: 0 15px;
		padding: 10px;
	}

	header .contact {
		width: 400px;
		height: 100px;
	}

	header .contact a {
		width: 100%;
		height: 100%;
		background-color: #231815;
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		margin: 0;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	header .contact a span {
		line-height: 30px;
		padding: 0 45px;
		position: relative;
	}

	header .contact a span:before,
	header .contact a span:after {
		content: '';
		width: 30px;
		height: 30px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: 30px auto;
		position: absolute;
	}

	header .contact a span:before {
		background-image: url(../img/common/mail.svg);
		left: 0;
	}

	header .contact a span:after {
		background-image: url(../img/common/mail_sign.svg);
		right: 0;
		transition: 0.5s;
	}

	header .contact a:hover span::after {
		right: -5px;
	}

	#navbtn {
		display: none;
	}
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	header .inner {
		padding-left: 20px;
	}

	header ul {
		width: calc(100% - 320px);
	}

	header ul li a {
		margin: 0 10px;
	}

	header .contact {
		width: 320px;
	}
}

@media screen and (max-width: 1380px) and (min-width: 769px) {
	header {
		height: auto;
	}

	header .inner {
		padding-left: 0;
	}

	header .logo {
		height: 80px;
		padding: 10px;
		position: absolute;
		left: 0;
		top: 0;
	}

	header nav {
		width: 100%;
		max-width: 100%;
		margin-top: 80px;
		padding-bottom: 0;
	}

	header ul {
		width: 100%;
		height: 80px;
	}

	header ul::before {
		content: none;
	}

	header .contact {
		height: 80px;
		position: absolute;
		right: 0;
		top: 0;
	}
}

@media screen and (max-width: 768px) {
	header {
		height: 60px;
	}

	header .inner {
		padding-left: 0;
	}

	header .logo {
		height: 60px;
		padding: 5px 15px;
	}
	header .logo .logo_txt {
		font-size: 12px;
	}
	header .logo a {
		margin-top: 5px;
	}
	header .logo img {
		height: 30px;
	}

	header nav.flex {
		display: none;
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 999;
	}

	header nav.flex.open {
		display: block;
	}

	header nav.flex li {
		width: 100%;
	}

	header nav.flex li a,
	header nav .contact a {
		width: 100%;
		border-top: 1px dashed #6195c8;
		padding: 18px 15px;
		display: flex;
		align-items: center;
	}

	header nav.flex li a:hover,
	header nav .contact a:hover {
		color: #6195c8;
	}

	#navbtn {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		padding: 0;
		outline: none;
		border: none;
		background: none;
		width: 30px;
		height: 20px;
		cursor: pointer;
	}

	#navbtn::before,
	#navbtn::after {
		content: '';
		display: block;
		height: 1px;
		background-color: #6195c8;
		transform: translateY(10px);
		transition: 0.3s ease-in-out;
	}

	#navbtn::before {
		transform: translateY(-10px);
		box-shadow: 0 10px #6195c8;
	}

	#navbtn.open {
		z-index: 999;
	}

	#navbtn.open:before {
		background-color: #6195c8;
		transform: rotate(-45deg);
		box-shadow: none;
	}

	#navbtn.open:after {
		background-color: #6195c8;
		transform: rotate(45deg);
		box-shadow: none;
	}
}

/* footer
------------------------------------------------------------*/
footer {
	background-image: url(../img/common/f_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
	padding: 90px 15px 100px;
	position: relative;
}

footer .inner {
	/*max-width: 1060px;*/
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-between;
	position: relative;
}
footer .inner .rental_txt {
	color: #ffffff;
	font-size: 36px;
	font-weight: 700;
	position: absolute;
	left: 300px;
	top: 10px;
}

footer .cont:first-child {
	width: calc(95% - 415px);
	padding-bottom: 120px;
}

footer .cont:last-child {
	width: 415px;
	align-content: flex-end;
	padding-top: 80px;
}

footer .logo {
	width: 300px;
}

footer .addr {
	font-size: 16px;
	line-height: 1.8;
	margin-top: 20px;
}

footer ul {
	width: 100%;
	border-top: 1px dashed #ffffff;
	margin-top: 60px;
	padding: 20px 0;
	justify-content: center;
	position: relative;
}

footer ul:before,
footer ul:after {
	content: '';
	width: 1px;
	height: 6px;
	background-color: #ffffff;
	position: absolute;
	top: -3px;
}

footer ul:before {
	left: -0.5px;
}

footer ul:after {
	right: -0.5px;
}

footer ul li:after {
	content: '|';
}

footer ul li:last-child:after {
	content: none;
}

footer ul li a {
	font-size: 17px;
	font-weight: 500;
	margin: 0 10px;
	padding: 10px;
}

footer .f_ttl {
	align-items: flex-end;
}

footer .f_ttl .ttl {
	width: 138px;
}

footer .f_ttl .txt {
	font-size: 16px;
	margin-left: 20px;
}

footer .f_btn {
	width: 100%;
}

footer .f_btn .btn {
	width: 100%;
	background: -moz-linear-gradient(90deg, #b2b2b2, #f2f2f2);
	background: -webkit-linear-gradient(90deg, #b2b2b2, #f2f2f2);
	background: linear-gradient(90deg, #b2b2b2, #f2f2f2);
	margin-top: 20px;
}

footer .f_btn .btn span {
	display: inline-block;
	width: 100%;
	height: 100%;
	min-height: 80px;
	background-repeat: no-repeat;
	color: #231815;
	font-size: 16px;
	padding: 20px 10px 20px 100px;
}

footer .f_btn .btn:first-child span {
	background-image: url(../img/common/f_mail.svg), url(../img/common/btn_sign.svg);
	background-size: 40px auto, 30px auto;
}

footer .f_btn .btn:nth-child(2) span {
	background-image: url(../img/common/f_mail.svg), url(../img/common/btn_sign.svg);
	background-size: 42px auto, 30px auto;
}

footer .f_btn .btn:last-child span {
	background-image: url(../img/common/f_tel.svg);
	background-position: left 30px center;
	background-size: 37px auto;
}

footer .f_btn .btn:not(:last-child) span {
	background-position: left 30px center, right 30px center;
	padding: 20px 80px 20px 100px;
	display: flex;
	align-items: center;
	transition: 0.5s;
}

footer .f_btn .btn:not(:last-child) a:hover span {
	background-position: left 30px center, right 25px center;
}

footer .f_btn .btn p {
	display: inline-block;
	font-size: 25px;
	font-weight: 700;
	margin: 10px 0;
}

#pagetop {
	width: 100%;
	height: 55px;
}

#pagetop a {
	width: 100%;
	height: 100%;
	background-color: #6195c8;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pagetop a img {
	width: 133px;
}

#copyright {
	font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
	max-width: 1090px;
	font-size: 12px;
	margin: 0 auto;
	padding: 0 15px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100px;
}

@media screen and (max-width: 1000px) {
	footer .inner {
		justify-content: center;
	}
	footer .inner .rental_txt {
		font-size: 28px;
		text-align: center;
		left: 0;
		right: 0;
		top: 55px;
	}

	footer .logo {
		margin: 0 auto 60px;
	}

	footer .addr {
		width: 100%;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}

	footer .cont:first-child {
		width: 100%;
		max-width: 520px;
		padding-bottom: 50px;
	}

	footer .cont:last-child {
		width: 100%;
		max-width: 520px;
		padding-top: 40px;
	}

	#copyright {
		text-align: center;
		bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	footer {
		padding: 60px 15px 70px;
	}

	footer .inner .rental_txt {
		font-size: 24px;
	}

	footer .logo {
		width: 240px;
	}

	.f_nav {
		display: none;
	}

	footer .f_ttl .ttl {
		width: 120px;
	}

	footer .f_ttl .txt {
		width: 100%;
		margin-left: 0;
		margin-top: 15px;
	}

	footer .f_btn .btn span {
		padding: 10px 10px 10px 70px;
	}

	footer .f_btn .btn:not(:last-child) span {
		padding: 10px 50px 10px 70px;
	}

	footer .f_btn .btn:not(:last-child) span {
		background-position: left 10px center, right 15px center;
	}

	footer .f_btn .btn:not(:last-child) a:hover span {
		background-position: left 10px center, right 10px center;
	}

	footer .f_btn .btn:last-child span {
		background-position: left 10px center;
	}

	footer .f_btn .btn .time {
		font-size: 14px;
	}

	#copyright {
		bottom: 20px;
	}
}

/* main　
------------------------------------------------------------*/
main {
	overflow: hidden;
	position: relative;
}

main:before {
	content: '';
	width: 100%;
	height: 765px;
	background-image: url(../img/common/page_ttl_l.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}

.home main:before {
	content: none;
}

section {
	width: calc(100% - 30px);
	max-width: 1320px;
	margin: 0 auto;
	padding: 100px 0;
}

section.last {
	padding-bottom: 180px;
}

.bg {
	background: -moz-linear-gradient(135deg, #ffffff, #efefef);
	background: -webkit-linear-gradient(135deg, #ffffff, #efefef);
	background: linear-gradient(135deg, #ffffff, #efefef);
}

.contact .bg {
	background: -moz-linear-gradient(225deg, #ffffff, #efefef);
	background: -webkit-linear-gradient(225deg, #ffffff, #efefef);
	background: linear-gradient(225deg, #ffffff, #efefef);
}

.pc,
.pc1180 {
	display: inline-block;
}

.sp {
	display: none;
}

.line_ttl .ttl {
	display: inline-block;
	border-bottom: 1px dashed #231815;
	position: relative;
	line-height: 1.2;
}

.rental .line_ttl .ttl {
	display: block;
	border-bottom: 1px dashed #231815;
	position: relative;
}


.line_ttl .ttl:before,
.line_ttl .ttl:after {
	content: '';
	width: 1px;
	height: 6px;
	background-color: #231815;
	position: absolute;
	bottom: -3px;
}

.line_ttl .ttl:before {
	left: -0.5px;
}

.line_ttl .ttl:after {
	right: -0.5px;
}

#page_ttl {
	width: 100%;
	height: 470px;
	background-image: url(../img/common/page_ttl_r.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 30px 15px;
	position: relative;
}

#page_ttl .inner {
	width: 100%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	align-items: center;
}

#page_ttl .box {
	width: 100%;
	max-width: 780px;
}
.rental #page_ttl .box {
	width: 55%;
}

#page_ttl .ttl {
	margin-bottom: 20px;
	padding-bottom: 40px;
	width: auto;
}

.company #page_ttl .ttl {
	padding-bottom: 22px;
}

#page_ttl .ttl img {
	width: 100%;
	height: auto;
	max-height: 80px;
}

.company #page_ttl .ttl img {
	height: 98px;
}
.business #page_ttl .ttl img,
.contact #page_ttl .ttl img {
	height: 80px;
}
.privacy #page_ttl .ttl img {
	height: 75px;
}

#page_ttl .sub {
	font-size: 40px;
	font-weight: 600;
}
.contact #page_ttl .txt {
	font-size: 18px;
	line-height: 1.4;
	margin-top: 15px;
}
#page_ttl .sub.lh18 {
	line-height: 1.8;
}

#page_ttl .bnr {
	width: 38%;
	margin-left: 4%;
}

.rental #page_ttl .flex {
	justify-content: end;
}

.section_ttl .ttl {
	margin-bottom: 20px;
	padding-bottom: 25px;
}

.section_ttl .ttl.base {
	padding-bottom: 17px;
}

.section_ttl .ttl img {
	height: 30px;
}

.section_ttl .ttl.base img {
	height: 38px;
}

.section_ttl .sub {
	font-size: 20px;
	font-weight: 600;
}

.section_ttl_rental {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 5px;
	margin-bottom: 10px;
}
.rental .section_ttl_rental_s {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 40px;
	margin-bottom: -20px;
	text-align: center;
}

.section_txt {
	line-height: 1.8;
}

.contact.mail main:before {
	content: none;
}

@media screen and (max-width: 1180px) {
	.pc1180 {
		display: none;
	}

	main:before {
		content: none;
	}
}

@media screen and (max-width: 1000px) {
	#page_ttl {
		width: 100%;
		height: 320px;
	}

	#page_ttl .ttl {
		margin-bottom: 10px;
		padding-bottom: 16px;
	}

	.company #page_ttl .ttl {
		padding-bottom: 10px;
	}

	#page_ttl .ttl img,
	.business #page_ttl .ttl img,
	.contact #page_ttl .ttl img {
		height: 70px;
	}

	.company #page_ttl .ttl img {
		height: 85px;
	}

	#page_ttl .sub {
		font-size: 32px;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	section {
		padding: 40px 0;
	}

	section.last {
		padding-bottom: 60px
	}

	#page_ttl {
		height: 210px;
	}

	#page_ttl .ttl img,
	.business #page_ttl .ttl img,
	.contact #page_ttl .ttl img {
		height: 36px;
	}

	.company #page_ttl .ttl img {
		height: 40px;
	}

	#page_ttl .sub {
		font-size: 18px;
	}
	.contact #page_ttl .txt {
		font-size: 16px;
		line-height: 1.4;
		margin-top: 10px;
	}

	.section_ttl .ttl {
		margin-bottom: 10px;
		padding-bottom: 15px;
	}

	.section_ttl .ttl.base {
		padding-bottom: 8px;
	}

	.section_ttl .ttl img {
		height: 24px;
	}

	.section_ttl .ttl.base img {
		height: 30px;
	}

	.section_ttl .sub {
		font-size: 18px;
	}

	.section_ttl_rental {
		font-size: 26px;
		line-height: 1.4;
	}
	
	.rental .section_ttl_rental_s {
		font-size: 20px;
		line-height: 1.4;
		margin-top: 30px;
	}
	
	

	.sp {
		display: inline-block;
	}
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  home
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#main_img {
	position: relative;
}

#main_img {
	width: 100%;
	height: 100%;
	background-image: url(../img/common/page_ttl_l_home.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
}

#main_img .imgs {
	position: relative;
}

#main_img .img {
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.leftAnime01 {
	animation: left_img 0.8s forwards 0s;
}

.leftAnime02 {
	animation: left_img 0.8s forwards 0.2s;
}

.leftAnime03 {
	animation: left_img 0.8s forwards 0.4s;
}

.leftAnime04 {
	animation: left_img 0.8s forwards 0.6s;
}

@keyframes left_img {
	0% {
		/*		transform: translateX(-100%); */
		opacity: 0;
	}

	100% {
		/*		transform: translateX(0); */
		opacity: 1;
	}
}

#main_img .txt {
	position: absolute;
	left: 10%;
	top: 8%;
}

#main_img .txt .ttl {
	font-size: 81px;
	font-weight: 600;
	line-height: 1.4;
}

#main_img .txt .ttl span {
	color: #6195c8;
}

#main_img .txt .sub {
	font-weight: 500;
	line-height: 1.8;
	margin-top: 60px;
}

.main_rental {
	font-weight: 500;
	margin-top: 30px;
}
.main_rental_ttl {
	font-size: 32px;
}
.main_rental_link {
	margin-top: 15px;
}
.main_rental_link a {
	color: #6195c8;
	font-size: 24px;
}


#home01 .home_ttl {
	text-align: center;
}

#home02 .home_ttl {
	display: inline-block;
}

.home_ttl .ttl {
	font-family: 'Noto Serif JP', serif;
	color: #6195c8;
	font-size: 50px;
	font-weight: 600;
}

.home_ttl .sub {
	text-align: center;
	margin-top: 15px;
}

.home_ttl .sub img {
	height: 23px;
}

#home02 .home_ttl .sub img {
	height: 16px;
}

#home02_cont03 {
	background-image: url(../img/home/home02_business03_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#home02_cont02 .home02_business_ttl {
	max-width: 526px;
	position: absolute;
	right: 0;
	top: 0;
}

#home02_cont03 .home02_business_ttl {
	max-width: 460px;
	position: absolute;
	left: 0;
	top: 0;
}

.home02_business_ttl .ttl {
	font-size: 33px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 15px;
}

#home02_cont01 .home02_business_ttl .ttl {
	/*width: 440px;*/
	/*letter-spacing: -0.05em;*/
}

#home02_cont02 .home02_business_ttl .ttl {
	width: 100%
}

.home02_business_ttl .sub {
	padding-left: 5px;
}

#home02_cont01 .home02_business_ttl .sub img {
	height: 44px;
}

#home02_cont02 .home02_business_ttl .sub img {
	height: 121px;
}

#home02_cont03 .home02_business_ttl .sub img {
	height: 180px;
}

#home02_cont01 .home02_business_detail_ttl {
	text-align: center;
}

.home02_business_detail_ttl .ttl {
	min-width: 400px;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 5px;
	padding-bottom: 15px;
}

#home02_cont02 .home02_business_detail_ttl .ttl {
	width: 100%;
}

.home02_business_detail_ttl .sub img {
	height: 22px;
}

.home02_business04_detail .home02_business_detail_ttl .sub img {
	height: 16px;
}

.home_btn {
	width: 280px;
	height: 80px;
}

#home01 .home_btn {
	margin: 80px auto 0;
}

#home02 .home_btn {
	width: 315px;
	margin: 50px auto 0;
}

.home_btn span {
	width: 100%;
	height: 100%;
	background-image: url(../img/common/btn_sign.svg);
	background-position: right 25px center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	background-color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.home_btn a:hover span {
	background-position: right 20px center;
}

#home01 section {
	max-width: 1200px;
}

.home01_cont {
	margin-top: 50px;
	justify-content: space-between;
}

.home01_cont .img {
	width: 41%;
}

.home01_cont .cont {
	width: 54%;
	padding-top: 50px;
}

.home01_cont .ttl {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.4;
}

.home01_cont .txt {
	line-height: 1.8;
	margin-top: 30px;
}

#home02_ttl {
	width: 100%;
	max-width: 100%;
	height: 500px;
	background-image: url(../img/home/home02_bg.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	padding-left: 15px;
	padding-right: 15px;
}

.home02_cont {
	justify-content: flex-end;
}

.home02_cont .cont {
	width: 100%;
	max-width: 960px;
	padding-left: 120px;
}

.home02_cont .cont .box {
	margin-top: 50px;
	align-items: flex-end;
}

.home02_cont .cont .txt {
	width: 380px;
	line-height: 1.8;
	margin-right: 50px;
}

#home02_cont01 {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.home02_business01_detail01 {
	align-items: flex-end;
}

.home02_business01_detail01 .detail:first-child {
	width: 49%;
	max-width: 940px;
}

.home02_business01_detail01 .detail:last-child {
	width: 36%;
	max-width: 670px;
	margin-right: 2%;
}

.home02_business01_detail01 .detail_txt {
	font-size: 18px;
	width: 100%;
	max-width: 600px;
	line-height: 1.8;
	margin: 60px 0;
}

.home02_business01_detail01 ul {
	justify-content: space-between;
	width: 100%;
	max-width: 600px;
}

.home02_business01_detail01 ul li {
	width: 48%;
	min-height: 200px;
	background: -moz-linear-gradient(135deg, #e5e5e5, #ffffff);
	background: -webkit-linear-gradient(135deg, #e5e5e5, #ffffff);
	background: linear-gradient(135deg, #e5e5e5, #ffffff);
	text-align: center;
	margin-top: 10px;
	padding: 40px 10px;
}

.home02_business01_detail01 ul li .ttl img {
	height: 11px;
}

.home02_business01_detail01 ul li .txt {
	line-height: 1.8;
	margin-top: 20px;
}

.home02_business01_detail02 {
	width: 100%;
	max-width: 1600px;
	background-image: url(../img/home/home02_business01_detail02_bg.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto;
	padding: 50px 0 80px;
}

.home02_business01_detail02 ul {
	width: calc(100% - 30px);
	max-width: 1400px;
	background-color: #ffffff;
	margin: 50px auto 0;
	padding: 30px 30px 20px;
	justify-content: space-between;
}

.home02_business01_detail02 ul li {
	width: 30%;
}

.home02_business01_detail02 ul li:last-child {
	width: 38.8%;
}
.home02_business01_detail02 ul li .img img {
	width: auto !important;
}

.home02_business01_detail02 .detail .img {
	margin: auto;
	width: 100%;
	max-width: 916px;
}

.home02_business01_detail02 .detail .img img {
	width: 100%;
}

.home02_business01_detail02 .detail .campaign_txt {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
}
.home02_business01_detail02 .detail .campaign_txt.txt002 {
	width: 100%;
	max-width: 1220px;
	text-align: left;
	margin: auto;
}

.home02_business01_detail02 .detail .campaign_txt .txt_ss{
	font-size: 30px;
	
}

#home02_cont02,
#home02_cont03,
#home02_cont04 {
	width: 100%;
	max-width: 100%;
}

#home02_cont02,
#home02_cont04 {
	padding-top: 0;
	position: relative;
}

#home02_cont02:before,
#home02_cont02:after,
#home02_cont04:before {
	content: '';
	background: -moz-linear-gradient(90deg, #e5e5e5, #ffffff);
	background: -webkit-linear-gradient(90deg, #e5e5e5, #ffffff);
	background: linear-gradient(90deg, #e5e5e5, #ffffff);
	position: absolute;
}

#home02_cont02:before {
	width: 50%;
	height: 493px;
	left: 0;
	top: 0;

}

#home02_cont04:before {
	width: 50%;
	height: 100%;
	left: 0;
	top: 0;
}

#home02_cont02:after {
	width: calc(50% + 150px);
	height: 443px;
	right: 0;
	bottom: 100px;
	z-index: 0;
}

.home02_business02_detail,
.home02_business04_detail {
	width: calc(100% - 30px);
	max-width: 1320px;
	margin: 0 auto;
	justify-content: flex-end;
	align-items: flex-end;
	position: relative;
}

.home02_business04_detail {
	padding-bottom: 200px;
}

.home02_business02_detail .detail01,
.home02_business04_detail .detail01 {
	position: absolute;
	left: 0;
	top: 0;
}

.home02_business04_detail .detail01 {
	padding-top: 80px;
	position: relative;
	width: 100%;
}

.home02_business02_detail .detail02 {
	padding-top: 220px;
	position: relative;
	z-index: 1;
}

.home02_business04_detail .detail02 {
	/* width: calc(50% + 120px); */
	margin-top: 40px;
}

.home02_business02_detail .detail01 .img,
.home02_business02_detail .detail02 .img {
	position: relative;
}

.home02_business04_detail .detail01 .img {
	margin-top: 40px;

}

.home02_business04_detail .detail02 .img {
	width: 48%;
	margin: 1%;
}

#home02_cont02 .detail01 .home02_business_detail_ttl,
#home02_cont02 .detail02 .home02_business_detail_ttl {
	width: 60%;
	position: absolute;
	left: 0;
}

#home02_cont02 .detail01 .home02_business_detail_ttl {
	top: 50px;
}

#home02_cont02 .detail02 .home02_business_detail_ttl {
	top: 310px;
}

.home02_business02_txt {
	line-height: 1.8;
	padding: 50px 30px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.home02_business03_detail {
	width: calc(100% - 30px);
	max-width: 1320px;
	margin: 0 auto;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
}

.home02_business03_detail .detail01 {
	width: 40%;
}

.home02_business03_detail .detail02 {
	width: 57%;
}

.home02_business03_detail .detail02 .txt {
	line-height: 1.8;
	padding: 60px 0 60px 30px;
}

.parallax_window {
	background: transparent;
}

.page_img_scroll {
	position: relative;
	max-width: 1920px;
	height: 200px;
	z-index: 2;
	margin: 0 auto;
}

#home01 {
	background-image: url(../img/home/home01_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}


.home02_bus_ttl {
width: 100%;
  max-width: 1030px;
  margin-left: auto;
	margin-top: 60px;
	margin-bottom: 60px;
}

.home02_bus_ttl .ttl {
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 45px;
	position: relative;
}

.home02_bus_ttl .ttl:before {
	content: '';
	width: 60px;
	height: 5px;
	background-color: #6195c8;
	position: absolute;
	left: 0;
	bottom: -25px;
}




@media screen and (max-width: 1300px) {
	#home02_cont01 {
		padding-bottom: 100px;
	}

	.home02_business01_detail01 {
		justify-content: center;
	}

	.home02_business01_detail01.reverse {
		flex-flow: wrap;
	}

	#home02_cont01 .home02_business_ttl {
		display: inline-block;
		background-color: #ffffff;
		margin-left: -50px;
		margin-top: -90px;
		padding: 50px 50px 0 50px;
	}

	.home02_business01_detail01 .detail:first-child {
		width: 100%;
		max-width: 100%;
		text-align: right;
	}

	.home02_business01_detail01 .detail:last-child {
		width: 100%;
		max-width: 750px;
		margin-right: 0;
	}

	#home02_cont02 {
		max-width: 750px;
	}

	#home02_cont02:before,
	#home02_cont02:after,
	#home02_cont04:before {
		content: none;
	}

	#home02_cont02 .home02_business_ttl {
		width: 100%;
		max-width: 750px;
		position: static;
	}

	#home02_cont02 .home02_business_ttl .ttl {
		width: auto;
	}

	.home02_business02_txt {
		width: 100%;
		padding: 30px 0;
		position: static;
	}

	.home02_business02_detail,
	.home02_business04_detail {
		justify-content: center;
	}

	.home02_business04_detail {
		padding-bottom: 0;
	}

	.home02_business02_detail .detail01,
	.home02_business04_detail .detail01 {
		max-width: 750px;
		position: relative;
	}

	.home02_business04_detail .detail01,
	.home02_business04_detail .detail02 {
		width: 100%;
		max-width: 720px;
		padding-top: 0;
	}

	.home02_business02_detail .detail02 {
		margin-top: 50px;
		padding-top: 0;
	}

	.home02_business04_detail .detail02 {
		margin-top: 20px;
	}

	#home02_cont02 .detail02 .home02_business_detail_ttl {
		top: 50px;
	}
}

@media screen and (max-width: 1200px) {
	.home01_cont .img {
		width: 100%;
		text-align: center;
	}

	.home01_cont .cont {
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
	}

	.home01_cont .cont .ttl {
		text-align: center;
	}

	.home02_cont .cont {
		padding-left: 0;
	}
}

@media screen and (max-width: 1000px) {
	#main_img .txt .ttl {
		font-size: 45px;
		text-shadow: 1px 1px 0 #ffffff;
	}

	#main_img .txt .sub {
		margin-top: 20px;
		text-shadow: 1px 1px 0 #ffffff;
	}

	.main_rental_ttl {
		text-shadow: 1px 1px 0 #ffffff;	
	}

	.home02_business01_detail01 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.home02_business01_detail02 .detail .campaign_txt {
		font-size: 28px;
	}
	
	.home02_business01_detail02 .detail .campaign_txt .txt_ss{
		font-size: 20px;
	}	
	

	#home02_cont03 .home02_business_ttl {
		position: static;
	}

	.home02_business03_detail .detail01 {
		width: 100%;
		margin-top: 50px;
		text-align: center;
	}

	.home02_business03_detail .detail02 {
		width: 100%;
		margin-top: 10px;
	}

	.home02_business03_detail .detail02 .img {
		text-align: center;
	}

	.home02_business03_detail .detail02 .txt {
		padding: 30px;
	}
}

@media screen and (max-width: 768px) {
	.home_btn {
		height: 60px;
	}

	#home01 .home_btn,
	#home02 .home_btn {
		margin-top: 30px;
	}

	#main_img .img {
		opacity: 1;
	}

	@keyframes left_img {
		0% {
			opacity: 1;
		}

		100% {
			opacity: 1;
		}
	}

	#home02_cont01 .home02_business_detail_ttl {
		text-align: left;
	}

	.home02_business_detail_ttl .ttl {
		font-size: 21px;
		margin-bottom: 20px;
	}

	#main_img .txt {
		width: calc(100% - 30px);
		left: 15px;
	}
	#main_img .txt .ttl {
		font-size: 36px;
	}

	.main_rental {
		margin-top: 15px;
	}
	.main_rental_ttl {
		font-size: 20px;
	}
	.main_rental_link a {
		font-size: 16px;
	}

	#home01 {
		padding-top: 340px;
	}

	#main_img .imgs {
		top: 320px;
	}

	.home_ttl .ttl {
		font-size: 32px;
	}

	.home_ttl .sub {
		margin-top: 7px;
	}

	.home_ttl .sub img {
		height: 16px;
	}

	#home01 section {
		background-image: none;
	}

	.home01_cont .img {
		width: 80%;
		margin: 0 auto;
	}

	.home02_business01_detail02 .detail .campaign_txt {
		font-size: 20px;
		margin-top: 15px
	}
	.home02_business01_detail02 .detail .campaign_txt .txt_ss{
		font-size: 16px;
	}	
	.home02_business01_detail02 ul li:last-child {
		width: 90%;
	}
	.home02_business01_detail02 ul li .img {
		text-align: center;
	}
	.home02_business01_detail02 ul li .cont {
		max-width: 240px;
		margin: 0 auto;
	}

	.home01_cont .cont .ttl {
		font-size: 21px;
	}

	.home01_cont .txt {
		margin-top: 15px;
	}

	#home02_ttl {
		height: auto;
		padding: 40px 15px;
	}

	#home02_cont01 {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	#home02_cont04 {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	#home02_cont01 .home02_business_ttl {
		margin: 0;
		padding: 0;
	}

	.home02_business01_detail01 .detail:last-child {
		margin-top: 30px;
	}

	.home02_business_ttl .ttl {
		font-size: 21px;
	}

	#home02_cont01 .home02_business_ttl .sub img {
		height: 18px;
	}

	#home02_cont01 .home02_business_ttl .ttl {
		width: auto;
		margin-bottom: 10px;
	}

	.home02_business01_detail01 .detail_txt {
		font-size: 16px;
		margin: 30px 0 20px;
	}

	.home02_business01_detail02 {
		padding: 40px 15px 60px;
	}

	.home02_business01_detail02 ul {
		width: 100%;
		margin-top: 30px;
	}

	.home02_business01_detail02 ul li {
		width: 80%;
		margin: 0 auto;
	}

	.home02_business01_detail02 ul li:nth-child(2) {
		margin: 50px auto;
	}

	#home02_cont02 .home02_business_ttl .sub img {
		height: 60px;
	}

	.home02_business02_txt {
		padding: 20px 0;
	}

	.home02_business02_detail .detail01,
	.home02_business02_detail .detail02 {
		width: 100%;
	}

	#home02_cont02 .detail01 .home02_business_detail_ttl,
	#home02_cont02 .detail02 .home02_business_detail_ttl {
		/*	top: 15px; */
		width: 100%;
		position: static;
		margin-bottom: 10px;
	}

	#home02_cont03 .home02_business_ttl .sub img {
		height: 90px;
	}

	.home02_business03_detail .detail01 {
		margin-top: 15px;
	}

	.home02_business03_detail .detail02 .txt {
		padding: 15px 0 0;
	}

	.home02_business04_detail .detail01 .img {
		margin-top: 20px;
	}

	.page_img_scroll {
		height: 120px;
	}
	
	.home02_bus_ttl {
		margin-left: 30px;
	}	
	
 .home02_bus_ttl .ttl::before {
    width: 40px;
    bottom: -20px;
  }

.home02_bus_ttl .ttl::before {
  content: '';
  width: 60px;
  height: 5px;
  background-color: #6195c8;
  position: absolute;
  left: 0;
  bottom: -25px;
}	
	
.home02_bus_ttl .ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }
	
	
}





@media screen and (max-width: 480px) {
	.home02_business01_detail01 ul li {
		width: 100%;
		min-height: 1px;
		padding: 30px 10px;
	}

	.home02_business04_detail .detail02 {
		margin-top: 0;
	}

	.home02_business04_detail .detail02 .img {
		width: 100%;
		margin-top: 10px;
	}
}




/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  business
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.business_ttl {
	margin: 50px 0;
}

.business_ttl .ttl {
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 45px;
	position: relative;
}

.business_ttl .ttl:before {
	content: '';
	width: 60px;
	height: 5px;
	background-color: #6195c8;
	position: absolute;
	left: 0;
	bottom: -25px;
}

.business_ttl .txt {
	line-height: 1.8;
}

.business_ttl .bnr {
	width: 100%;
	max-width: 964px;
}

.business_ttl .bnr img {
	width: 100%;
}

.business_cont {
	margin-top: 30px;
}

.business_cont .cont.w1030 {
	width: 100%;
	max-width: 1030px;
	margin-left: auto;
}

.img_ttl {
	width: 100%;
	background: -moz-linear-gradient(180deg, #ffffff, #cccccc);
	background: -webkit-linear-gradient(180deg, #ffffff, #cccccc);
	background: linear-gradient(180deg, #ffffff, #cccccc);
	font-size: 27px;
	font-weight: 500;
	margin-top: 15px;
	padding: 15px;
}

.img_ttl.top {
	font-size: 30px;
	text-align: center;
	margin-top: 100px;
	padding: 20px 15px;
}

.img_ttl span {
	display: inline-block;
	font-size: 18px;
	margin-left: 15px;
}

.img_cont {
	justify-content: space-between;
}

.img_cont li {
	margin-top: 50px;
}

.img_cont.item02 li {
	width: 49%;
	max-width: 630px;
}

.img_cont.item03 li {
	width: 32%;
}

#business02 .img_cont.item03 li {
	width: 100%;
}

#business02 .img_cont.cont01.item03 li:nth-child(3),
#business02 .img_cont.cont01.item03 li:nth-child(4) {
	width: 48%;
}

#business02 .img_cont.item03 li .ttl {
	width: 100%;
}

#business02 .img_cont.item03 li .img {
	width: 41.74%;
	margin-right: 2%;
}

#business02 .img_cont.cont01.item03 li:nth-child(3) .img,
#business02 .img_cont.cont01.item03 li:nth-child(4) .img {
	width: 87.04%;
}

#business02 .img_cont.cont02.item03 li:first-child .img:nth-child(2) {
	/* width: 31.06%; */
}

#business02 .img_cont.cont01.item03 li:nth-child(7) .img:nth-child(2) {
	width: 29.12%;
}

#business02 .img_cont.cont01.item03 li:nth-child(7) .img:first-child {
	width: 27.18%;
}

#business02 .img_cont.cont01.item03 li:nth-child(2) .img:first-child,
#business02 .img_cont.cont01.item03 li:nth-child(6) .img:first-child {
	width: 24.27%;
}






.img_cont li .img {
	margin-bottom: 10px;
}

.img_cont li .ttl.line_ttl .ttl {
	width: 100%;
	max-width: 260px;
	font-size: 20px;
	padding: 15px 10px 15px 20px;
}

#business01 .section_txt {
	margin-top: 50px;
}

.merit_cont {
	margin: 100px auto 180px;
}

.merit_cont dl {
	max-width: 900px;
}

.merit_cont dl dt,
.merit_cont dl dd {
	padding: 20px 20px 20px 90px;
}

.merit_cont dl dt {
	background-color: #efefef;
	font-size: 30px;
	line-height: 1.4;
	position: relative;
}

.merit_cont dl dt:before {
	content: '';
	width: 43px;
	height: 58px;
	background-image: url(../img/business/business01_icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 43px auto;
	position: absolute;
	left: 24px;
	top: -12px;
}

.merit_cont dl dd {
	line-height: 1.8;
}

.flow_cont {
	margin: 80px auto 180px;
}

.flow_cont .cont {
	margin-top: 30px;
	justify-content: space-between;
	align-items: center;
}

.flow_cont .icon {
	width: 230px;
	height: 170px;
	background-color: #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flow_cont .step {
	margin: 0 50px;
}

.flow_cont .step img {
	width: 100px;
}

.flow_cont .box {
	width: calc(100% - 430px);
}

.flow_cont .box .ttl {
	font-size: 23px;
}

.flow_cont .box .txt {
	line-height: 1.8;
	margin-top: 10px;
}

.business .rental_ttl .ttl {
	font-size: 40px;
}

@media screen and (max-width: 768px) {
	.business_ttl .ttl {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.business_ttl .ttl:before {
		width: 40px;
		bottom: -20px;
	}

	.merit_cont {
		margin: 60px auto 80px;
	}

	.merit_cont dl dt,
	.merit_cont dl dd {
		font-size: 16px;
		padding: 10px 10px 10px 40px;
	}

	.merit_cont dl dt:before {
		width: 30px;
		height: 60px;
		background-size: 30px auto;
		left: -5px;
		top: -20px;
	}

	.flow_cont {
		margin: 40px auto 60px;
	}

	.flow_cont .icon {
		width: 100%;
		height: 80px;
	}

	.flow_cont .icon img {
		height: 60px;
	}

	.flow_cont .step {
		width: 100%;
		text-align: center;
		margin: 15px 0;
	}

	.flow_cont .step img {
		height: 15px;
	}

	.flow_cont .box {
		width: 100%;
	}

	.flow_cont .box .ttl {
		font-size: 18px;
	}

	.img_ttl {
		font-size: 16px;
		margin-top: 10px;
		padding: 10px;
	}

	.img_ttl.top {
		font-size: 18px;
		margin-top: 50px;
	}

	.img_ttl span {
		font-size: 14px;
	}

	.img_cont li,
	.img_cont.item02 li {
		margin-top: 30px;
	}

	.img_cont li .ttl.line_ttl .ttl {
		font-size: 14px;
	}

	#business01 .section_txt {
		margin-top: 30px;
	}

	.business .rental_ttl .ttl {
		font-size: 21px;
	}
}

@media screen and (max-width: 768px) {
	.img_cont.item02 li {
		width: 100%;
	}

	.img_cont.item03 li {
		width: 49%;
	}
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  rental
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.rental_ttl {
	margin-bottom: 25px;
}

.rental_ttl .ttl {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.4;
}

.rental_ttl .txt {
	line-height: 1.8;
	margin-top: 5px;
}

.rental_cont .cont {
	margin-top: 100px;
	align-items: center;
}

.rental_cont .img {
	width: calc(100% - 790px);
}

.rental_cont .box_cont {
	width: 790px;
}

.rental_cont .box {
	background-color: #efefef;
	font-size: 16px;
	line-height: 1.8;
	padding: 45px 45px;
}

.rental_cont .info {
	justify-content: space-between;
}

.rental_cont .left {
	width: 250px;
}

.rental_cont .info_ttl {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.rental_cont .info_price {
	font-size: 16px;
	margin-bottom: 30px;
}

.rental_cont .info_price img {
	height: 50px;
}

.rental_cont .info_txt {
	font-size: 16px;
}

.rental_cont .info_btn {
	width: 200px;
	border: 1px solid #231815;
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
	margin-top: 20px;
	padding: 10px;
}

.rental_cont .cont:nth-child(6) .info_btn {
	/*margin-top: 0;*/
	margin-bottom: 20px;
}

.rental_cont .right {
	width: 445px;
}

.rental_cont ol li {
	text-indent: -1em;
	padding-left: 1em;
}

.rental_cont .box_txt {
	width: 100%;
	margin-top: 10px;
}

.image_txt {
	font-size: 15px;
	margin-top: 20px;
	text-align: center;
}

.contact_btn {
	width: 100%;
	height: 100%;
	background-color: #231815;
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 800px;
	margin: 50px auto;
	padding: 30px 0;
}

.contact_btn span {
	line-height: 30px;
	padding: 0 45px;
	position: relative;
}

.contact_btn span:before,
.contact_btn span:after {
	content: '';
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	position: absolute;
}

.contact_btn span:after {
	background-image: url(../img/common/mail_sign.svg);
	right: 0;
	transition: 0.5s;
}

.contact_btn:hover span::after {
	right: -5px;
}

.ren_jisseki {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 160px;
	padding-top: 60px;
	
}
.ren_jisseki.br02 {
	width: 100%;
	max-width: 1030px;
	padding-top: 0;
}

.ren_jisseki .inner {
	margin: 30px 60px;
}
.ren_jisseki .inner_txt {
	margin-top: 30px;
	font-size: 20px;
}

.ren_jisseki .inner02 {
	margin-top: 30px;
	width: 54%;
}
.ren_jisseki .inner03 {
	margin-top: 30px;	
	width: 46%;
}

.ren_jisseki p {
	text-indent:-1em;
	padding-left:1em;
	line-height: 180%;
}
.ren_pd40 {
	padding: 0 40px;
}



@media screen and (max-width: 1180px) {
	.rental_cont .img {
		width: 100%;
		max-width: 790px;
		margin: 0 auto;
		text-align: center;
	}

	.rental_cont .box_cont {
		width: 100%;
		max-width: 790px;
		margin: 30px auto 0;
	}
}

@media screen and (max-width: 840px) {
	.rental_cont .box {
		padding: 30px;
	}

	.rental_cont .left {
		width: 100%;
	}

	.rental_cont .right {
		width: 100%;
		margin-top: 30px;
	}
}

@media screen and (max-width: 768px) {
	.rental_cont .cont {
		margin-top: 80px;
	}

	.rental_cont .img {
		width: 80%;
	}

	.rental_ttl .ttl {
		font-size: 21px;
	}

	.rental_cont .box {
		background-color: transparent;
		padding: 0;
	}

	.rental_cont .info_ttl {
		font-size: 18px;
	}

	.rental_cont .info_price {
		margin-bottom: 15px;
	}

	.rental_cont .info_price img {
		height: 40px;
	}

	.rental_cont .right {
		margin-top: 15px;
	}
	
	.ren_jisseki {
		margin: 0 auto 80px;
		padding-top: 30px;

	}	
	
	.ren_jisseki .inner {
		margin: 15px;
	}
	.ren_jisseki .inner_txt {
		margin-top: 15px;
		font-size: 18px;
	}	
	
	.ren_jisseki .inner02 {
		margin-top: 15px;
		margin-left: 15px;
		width: 100%;
	}		
	.ren_jisseki .inner03 {
		margin-top: 0;
		margin-left: 15px;
		width: 100%;
	}	
	
	
	
}

@media screen and (max-width: 480px) {
	.rental_cont .info_btn {
		width: 100%;
		font-size: 16px;
	}
}

.ren_br002 {
	margin: 50px auto;
	text-align: center;
}

.ren_br002_ttl {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 15px;
	
}
.rental_cont .ren_br_in {
	width: 50%;
	line-height: 1.8;
}

@media screen and (max-width: 1180px) {
	
.rental_cont .ren_br_in {
	width: 100%;
	line-height: 1.8;
}	
	
	
}

@media screen and (max-width: 768px) {
.ren_br002_ttl {
	font-size: 18px;
	
}
.rental_cont .ren_br_in {
	margin-left: 14px;
}	
.ren_pd40 {
  padding: 0;
}	
	

}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  company
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.company_cont .cont:first-child {
	width: 240px;
	margin-right: 50px;
}

.company_cont .cont:last-child {
	width: calc(100% - 290px);
}

.company table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 15px;
	line-height: 1.8;
}

#company03 table {
	border-spacing: 0 5px;
}

.company table th,
.company table td {
	vertical-align: top;
	padding: 10px 30px;
}

#company02 table th,
#company02 table td {
	background-color: #f2f2f3;
}

.company table th {
	width: 240px;
}

#company03 table th {
	font-family: 'Josefin Sans', sans-serif;
	color: #dcdddd;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	padding: 15px 0;
}

#company02 table td ol li {
	text-indent: -1em;
	padding-left: 1em;
}

#company02 table td span {
	color: #bbbcbc;
	margin-left: 20px;
}

#company01 .section_img {
	margin-bottom: 30px;
}

#company01 .sign {
	font-size: 19px;
	font-weight: 600;
	margin-top: 50px;
}

#company01 .sign span {
	display: inline-block;
	font-size: 32px;
	margin-left: 30px;
}

.company_cont .cont .cont_detail {
	background-color: #f2f2f3;
	margin-top: 100px;
	padding: 30px;
}

.company_cont .cont .cont_ttl {
	font-size: 20px;
}

.company_cont .cont dl {
	margin-top: 30px;
}

.company_cont .cont dl dt {
	width: 320px;
	font-size: 21px;
	padding-top: 6px;
}

.company_cont .cont dl dt span {
	color: #5e8dbc;
}

.company_cont .cont dl dd {
	width: calc(100% - 320px);
	line-height: 1.8;
}

.map {
	width: 100%;
	height: 522px;
	margin-top: 30px;
}

@media screen and (max-width: 1180px) {
	.company_cont .cont:first-child {
		width: 100%;
		margin-right: 0;
		margin-bottom: 50px;
	}

	.company_cont .cont:last-child {
		width: 100%;
	}

	.company table th {
		width: 200px;
	}
}

@media screen and (max-width: 768px) {
	.company_cont .cont:first-child {
		margin-bottom: 30px;
	}

	#company01 .section_img {
		margin-bottom: 15px;
	}

	#company01 .sign {
		font-size: 16px;
		margin-top: 20px;
	}

	#company01 .sign span {
		font-size: 20px;
	}

	.company table th,
	.company table td {
		width: 100%;
		float: left;
		padding-left: 10px;
		padding-right: 10px;
	}

	.company table th {
		font-weight: 700;
	}

	.company table td {
		padding-top: 0;
	}

	#company03 table th,
	#company03 table td {
		padding: 10px;
	}

	#company03 table th {
		font-size: 20px;
	}

	#company03 table td {
		padding-top: 0;
	}

	.company_cont .cont .cont_detail {
		margin-top: 30px;
		padding: 15px 10px;
	}

	.company_cont .cont .cont_ttl {
		font-size: 18px;
	}

	.company_cont .cont dl {
		margin-top: 15px;
	}

	.company_cont .cont dl dt {
		width: 100%;
		font-size: 16px;
		margin-bottom: 10px;
		padding-top: 0;
	}

	.company_cont .cont dl dd {
		width: 100%;
		padding-left: 8px;
	}

	.map {
		height: 240px;
	}
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  contact
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.line_cont {
	max-width: 1150px;
	background-color: #f2f2f3;
	padding: 5%;
	align-items: center;
}

.line_cont .cont {
	width: 69.1%;
}

.line_cont .ttl {
	color: #00a75b;
	font-size: 37px;
	font-weight: 600;
	line-height: 1.2;
}

.line_cont .txt {
	font-size: 23px;
	line-height: 1.4;
	margin-top: 40px;
}

.line_cont .btn {
	width: 580px;
	height: 105px;
	background-color: #00a75b;
	margin-top: 50px;
}

.line_cont .btn span {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-image: url(../img/contact/line.svg), url(../img/contact/line_sign.svg);
	background-position: left 20px center, right 30px center;
	background-repeat: no-repeat;
	background-size: 104px auto, 30px auto;
	color: #ffffff;
	font-size: 23px;
	padding: 20px 80px 20px 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
}

.line_cont .btn a:hover span {
	background-position: left 20px center, right 25px center;
}

.line_cont .img {
	width: 30.9%;
}

.contact_cont .cont {
	margin-top: 80px;
	align-items: center;
}

.contact_cont .icon {
	width: 120px;
	margin-right: 50px;
	position: relative;
}

.contact_cont .icon:after {
	content: '';
	width: 1px;
	height: 68px;
	background-color: #231815;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.contact_cont .tel .icon img {
	width: 67px;
}

.contact_cont .mail .icon img {
	width: 72px;
}

.contact_cont .detail {
	width: calc(100% - 170px);
}

.contact_cont .detail.flex {
	align-items: center;
}

.contact_cont .detail.flex .box:last-child {
	margin-left: 50px;
}

.contact_cont .ttl {
	font-size: 23px;
}

.contact_cont .txt {
	font-size: 18px;
	margin-top: 10px;
}

.contact_cont .tel-link {
	font-size: 42px;
	font-weight: 700;
}

.contact_cont .time {
	font-size: 16px;
	margin-top: 10px;
}

.mailform {
	margin-top: 100px;
}

.mailform table {
	width: 100%;
}

.mailform table th,
.mailform table td {
	padding: 20px 0;
}

.mailform table th {
	width: 320px;
	font-size: 22px;
	font-weight: 600;
	vertical-align: top;
	padding-top: 15px;
}

.mailform table th span {
	display: inline-block;
	color: #e60012;
	font-size: 17px;
	margin-bottom: 5px;
}

.mailform table td .addr {
	margin-top: 20px;
}

.mailform table td input[type="text"],
.mailform table td textarea {
	font-family: 'Noto Serif JP', serif;
	width: 100%;
	height: 64px;
	border: none;
	font-size: 18px;
	-ms-box-shadow: 0px 0px 8px 3px #ccc inset;
	-moz-box-shadow: 0px 0px 8px 3px #ccc inset;
	-webkit-box-shadow: 0px 0px 8px 3px #ccc inset;
	-o-box-shadow: 0px 0px 8px 3px #ccc inset;
	box-shadow: 0px 0px 8px 3px #ccc inset;
	padding: 10px 15px;
	-webkit-appearance: none;
	appearance: none;
}

.mailform table td input.wm {
	max-width: 600px;
}

.mailform table td input.ws {
	max-width: 200px;
}

.mailform table td textarea {
	height: 500px;
}

.send_btn {
	width: 220px;
	height: 65px;
	margin: 100px auto 0;
}

.send_btn input {
	font-family: 'Noto Serif JP', serif;
	width: 100%;
	height: 100%;
	background: -moz-linear-gradient(0deg, #b2b2b2, #f2f2f2);
	background: -webkit-linear-gradient(0deg, #b2b2b2, #f2f2f2);
	background: linear-gradient(0deg, #b2b2b2, #f2f2f2);
	border: none;
	font-size: 22px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.toi_lead_form {
	width: 100%;
	max-width: 900px;
	margin: 60px auto 0;
	line-height: 1.4;
}
.toi_lead_form p {
  margin-bottom: 10px;
}
.toi_lead_form .check {
	text-align: center;
}
.toi_lead_form a {
  color: #0000a4;
  text-decoration: underline;
}

.toi_lead_form a:hover {
  text-decoration: none;
}

.checkbox_flex {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.mailform table td .checkbox_flex input[type="text"] {
	height: auto;
	margin-left: 3%;
	margin-right: 10px;
	padding: 5px;
	width: 80px;
}

.mailform table td .checkbox_flex input[type="checkbox"] {
	margin-right: 10px;
}

.mailform table td .date-edit {
	display: flex;
	align-items: center;
	font-size: 32px;
}

.mailform table td .date-edit span {
	margin-left: 10px;
	margin-right: 10px;
}

.mailform table td .note {
	margin-top: 10px;
}

.mailform table td .date-edit input[type="date"] {
	font-family: 'Noto Serif JP', serif;
	width: 100%;
	height: 64px;
	border: none;
	font-size: 18px;
	-ms-box-shadow: 0px 0px 8px 3px #ccc inset;
	-moz-box-shadow: 0px 0px 8px 3px #ccc inset;
	-webkit-box-shadow: 0px 0px 8px 3px #ccc inset;
	-o-box-shadow: 0px 0px 8px 3px #ccc inset;
	box-shadow: 0px 0px 8px 3px #ccc inset;
	padding: 10px 15px;
	-webkit-appearance: none;
	appearance: none;
	max-width: 300px;
}

@media screen and (max-width: 768px) {
	.line_cont .cont {
		width: 100%;
	}

	.line_cont .ttl {
		font-size: 18px;
	}

	.line_cont .txt {
		font-size: 16px;
		margin-top: 15px;
	}

	.line_cont .btn {
		width: 100%;
		height: 60px;
		margin-top: 20px;
	}

	.line_cont .btn span {
		background-position: left 10px center, right 15px center;
		background-size: 60px auto, 30px auto;
		font-size: 14px;
		padding: 10px 60px 10px 80px;
	}

	.line_cont .btn a:hover span {
		background-position: left 10px center, right 10px center;
	}

	.line_cont .img {
		width: 45%;
		margin: 20px auto 0;
	}

	.contact_cont .icon {
		width: 100%;
		text-align: center;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.contact_cont .tel .icon img,
	.contact_cont .mail .icon img {
		width: 40px;
	}

	.contact_cont .icon:after {
		content: none;
	}

	.contact_cont .detail {
		width: 100%;
		text-align: center;
	}

	.contact_cont .detail .box {
		width: 100%;
	}

	.contact_cont .detail.flex .box:last-child {
		margin-left: 0;
	}

	.contact_cont .ttl {
		font-size: 18px;
	}

	.contact_cont .tel-link {
		font-size: 24px;
		margin: 15px 0;
	}

	.contact_cont .txt {
		font-size: 16px;
		line-height: 1.8;
	}

	.mailform {
		margin-top: 60px;
	}

	.mailform table th,
	.mailform table td {
		width: 100%;
		float: left;
	}

	.mailform table th {
		font-size: 16px;
		padding-bottom: 0;
	}

	.mailform table th span {
		font-size: 14px;
	}

	.mailform table td input,
	.mailform table td textarea {
		height: 50px;
		font-size: 16px;
		padding: 10px;
	}

	.mailform table td textarea {
		height: 200px;
	}

	.send_btn {
		height: 50px;
		margin-top: 50px;
	}

	.send_btn input {
		font-size: 16px;
	}
}



.rental_item .cont {
	font-weight: 500;
	line-height: 1.2;
}
.rental .rental_item .cont {
	margin-top: 30px;
}
.rental_item .cont .ttl {
	font-size: 16px;
	margin-bottom: 5px;
}
.rental_item .price {
	font-size: 24px;
	font-weight: 700;
}
.rental .rental_item .price {
	font-size: 20px;
	line-height: 1.2;
}
.rental_item .price span {
	font-size: 16px;
}
.rental_item .postage {
	color: #6195c8;
	font-size: 20px;
	font-weight: 700;
	margin: 15px 0 5px;
}
.rental_item .note {
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.rental_item .price {
		font-size: 20px;
	}
	.rental_item .postage {
		font-size: 16px;
	}
	.rental_item .note {
		font-size: 14px;
	}
}

.rental #page_ttl .inner {
	position: relative;
}
.rental .campaign_txt {
	font-size: 36px;
	font-weight: 700;
	position: absolute;
	right: -100px;
	/*bottom: 55px;*/
	bottom: 30px;
}

@media screen and (max-width: 1680px) {
	.rental .campaign_txt {
		font-size: 28px;
		right: 0;
	}
}

@media screen and (max-width: 1000px) {
	.rental .campaign_txt {
		bottom: -20px;
	}
}

@media screen and (max-width: 768px) {
	.rental .campaign_txt {
		width: 100%;
		font-size: 16px;
		text-align: right;
		line-height: 1.4;
		bottom: -55px;
	}
}


/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  privacy
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.w1030 {
	width: 100%;
	max-width: 1030px;
	margin: auto;
	line-height: 1.8;
}

.section_ttl_rental {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 5px;
  margin-bottom: 10px;
}
.section_ttl_rental_s {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 40px;
  margin-bottom: -20px;
	text-align: center;
}

.privacy-cont {
	font-size: 16px;
}
.privacy-cont .cont {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 30px;
}

.content-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 10px;
}
.w1030 .mrb50 {
	margin-bottom: 50px;
}
.w1030 .inner {
	margin-left: 20px;
}
.w1030 .inner p {
	text-indent:-1.2em;
	padding-left:1.2em;
}
.w1030 .inner .inner02 {
	margin: 6px 0 5px 40px;
}
.privacy-cont .sub {
	margin-top: 10px;
}
.privacy-cont .sub th {
  width: 4.8em;
  vertical-align: top;
}
.privacy-cont .sub td {
  width: calc(100% - 4.8em);
}

.privacy-cont .sub td span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .privacy #page_ttl .ttl img {
    height: 36px;
  }
  .privacy .section_ttl_rental {
    font-size: 26px;
    line-height: 1.4;
  }		
	
  .w1030 .inner .inner02 {
    margin: 6px 0 5px 20px;
	}
	
	
	
}

.txt_line {
	text-decoration: line-through;
	font-size: 36px;
}
